专家。 我是NODEJS的超级新手。
我刚刚使用github上传的示例。 但快递的版本与我的电脑设置不匹配。 所以它不起作用它只是一个简单的例子。
错误msggg
RangeError: "port" argument must be >= 0 and < 65536
at assertPort (internal/net.js:17:11)
at Server.listen (net.js:1383:5)
at Object.<anonymous> (D:\nodeworkspace\program\app.js:90:37)
at Module._compile (module.js:556:32)
at Object.Module._extensions..js (module.js:565:10)
at Module.load (module.js:473:32)
at tryModuleLoad (module.js:432:12)
at Function.Module._load (module.js:424:3)
at Module.runMain (module.js:590:10)
at run (bootstrap_node.js:394:7)
at startup (bootstrap_node.js:149:9)
at bootstrap_node.js:509:3
我刚刚发现这个问题是由于nodejs的新版本引起的。
但是我找不到如何解析适合Nodejs 4.13版本的代码。
请让我知道如何修复它。
这是让错误产生错误的代码。
var server = http.createServer(app).listen(app.get('port'), function(){
console.log('Server is started. port : ' + app.get('port'));
database.init(app, config);
});