我安装了node.js新版本,我使用node-v和npm-v检查了命令提示符 我想知道如何创建和运行该文件。
答案 0 :(得分: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”。
答案 1 :(得分:0)
您可以像这样启动Node.js过程:
% node example.js
Server running at http://127.0.0.1:1337/