Enide Studio 2014基于Eclipse 4.4 M4 Luna的预览
new - > Node.js项目。
hello-world-server.njs是这样的:
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”
结束:谢谢。
答案 0 :(得分:0)
阅读更新的简介http://www.nodeclipse.org/enide/studio/2014/
简而言之,您需要将Enide Studio 2014插件(v0.17)安装到最近的Eclipse中。 现在你使用的是Nodeclipse的旧v0.11
您还可以将Eclipse和Nodeclipse(使Enide Studio 2014更新)更新到最新版本。