5

我目前正在尝试从 URL导入我的脚本之一require,但在这种情况下该函数似乎不起作用。

var functionChecker = require("http://javascript-modules.googlecode.com/svn/functionChecker.js");

这是此脚本生成的错误消息的摘录:

Error: Cannot find module 'http://javascript-modules.googlecode.com/svn/functionChecker.js'

有没有办法从 node.js 中的 URL 导入脚本?

4

1 回答 1

3

我终于让它工作了。此示例下载文件http://javascript-modules.googlecode.com/svn/functionChecker.js,然后将其保存在本地目录中。

//var functionChecker = require(__dirname + '/functionChecker.js');
//functionChecker.checkAllFunctions(__filename);

var http = require('http');
var fs = require('fs');
var google = http.createClient(80, 'www.google.com');
var request = google.request('GET', '/svn/functionChecker.js',
  {'host': 'javascript-modules.googlecode.com'});
request.end();
out = fs.createWriteStream('functionChecker.js');
request.on('response', function (response) {
  response.setEncoding('utf8');
  response.on('data', function (chunk) {
    out.write(chunk);
  });
});

//function name: stuff
//requires functions: false
//is defined: false
//description: blah blah woohoo.
于 2013-01-01T08:47:21.590 回答