我如何开始使用Node.js?

时间:2014-12-04 09:07:35

标签: javascript node.js

我一直在网上看,发现有关SSJS的东西有点令人困惑。如何开始使用服务器端JavaScript?可以与任何网络主机一起使用吗?

到目前为止,我已经从官方网站下载了Node.js程序,安装了它,设置了PATH(安装程序做了),我复制/粘贴了代码片段:

var http = require('http');
http.createServer(function (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/');

在主页上显示为example.js,然后打开节点cmd并输入:“ node.js example.js ”(不带引号),我得到的全部是:

...

但我应该得到:

  

“你好,世界!”

我做错了吗?

1 个答案:

答案 0 :(得分:0)

我认为你的命令行应该只是'node example.js'