I'm currently trying to import one of my scripts from an URL, but the require
function doesn't appear to be working in this case.
var functionChecker = require("http://javascript-modules.googlecode.com/svn/functionChecker.js");
This is an excerpt of the error message that was produced by this script:
Error: Cannot find module 'http://javascript-modules.googlecode.com/svn/functionChecker.js'
Is there any way to import a script from an URL in node.js?