基于 Eclipse 4.4 M4 Luna 预览版的 Enide Studio 2014
新建 -> Node.js 项目。
hello-world-server.njs 是这样的:</p>
var http = require('http');
http.createServer(function handler(req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
1个问题:为什么hello-world-server.njs不是hello-world-server.js。
JS和NJS有什么区别
2问:我在运行节点应用
Console show:
org.nodeclipse.debug.launch.LaunchShortcut
node E:\work\node_eclipse_w\k\hello-world-server.njs --tea-pot-mode
但我无法访问“127.0.0.1:1337”页面
结束:谢谢。</p>