我安装了 node.js 新版本,并使用 node-v 和 npm-v 签入了命令提示符,我想知道如何创建和运行该文件。
问问题
2804 次
2 回答
1
在项目的根目录下创建文件 hello.js,并在其中填写以下代码:
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);
首先,在命令提示符下使用 Node.js 执行您的脚本:
node hello.js
打开浏览器并将其指向http://localhost:8888/
。您将看到一条消息“Hello World”。
于 2013-10-30T19:20:54.403 回答
0
您可以像这样启动 Node.js 进程:
% node example.js
Server running at http://127.0.0.1:1337/
于 2013-10-30T19:17:12.133 回答