1

基于 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>

4

1 回答 1

0

阅读更新的介绍http://www.nodeclipse.org/enide/studio/2014/

简而言之,您需要将 Enide Studio 2014 插件 (v0.17) 安装到最近的 Eclipse 中。现在您正在使用旧的 v0.11 的 Nodeclipse

您还可以将 Eclipse 和 Nodeclipse(制作 Enide Studio 2014)更新到最新版本。

于 2014-10-10T06:29:57.257 回答