应用程序的这一部分直接来自nowjs示例:
默认nowjs应用程序:
var fs = require('fs');
var server = require('http').createServer(function(req, response){
fs.readFile('helloworld.html', function(err, data) {
if (err) throw err;
response.writeHead(200, {'Content-Type':'text/html'});
response.write(data);··
response.end();
});
});
server.listen(8080);
var everyone = require("/usr/local/lib/node/.npm/now/active/package/lib/nowServerLib.js").initialize(server);
业余实施的实时twitter应用程序。
有时我的应用程序启动正常,有时我收到此错误:
Error: create requires at least one (1) argument.
at Object.wrap (/usr/local/lib/node/.npm/now/0.5.1/package/lib/wrap.js:8:18)
at EventEmitter.ClientGroup (/usr/local/lib/node/.npm/now/0.5.1/package/lib/clientGroup.js:107:20)
at Object.initialize (/usr/local/lib/node/.npm/now/0.5.1/package/lib/nowServerLib.js:190:14)
at Object.<anonymous> (/home/user/projects/nodetwitter/helloworld_server.js:11:90)
at Module._compile (module.js:404:26)
at Object..js (module.js:410:10)
at Module.load (module.js:336:31)
at Function._load (module.js:297:12)
at Array.<anonymous> (module.js:423:10)
at EventEmitter._tickCallback (node.js:126:26)
其中一个似乎没有任何理由。它可以运行5次以上而不会出现错误,或者每次都可能发生。
环境是:ubuntu 10.04,节点0.4.6
答案 0 :(得分:1)
您的错误似乎来自NowJS,特别是来自https://github.com/Flotype/now/blob/613e379cd35349d212444d698a0267897dcabde5/lib/wrap.js#L8。
我看到你使用的是0.5.1而不是最新版本0.5.3。我会尝试更新到最新版本的NowJS。
无论如何,它有时很有效并且有时会失败!