如何通过node.js安装localhost

时间:2014-05-01 13:45:58

标签: javascript node.js localhost

这是第一次使用node.js,我想使用node.js服务器运行localhost

我实际安装了node.js,但我不知道如何运行localhost服务器。

任何人都可以帮助我吗?

感谢。

1 个答案:

答案 0 :(得分:2)

在项目的根目录中创建文件server.js,并使用以下代码填写:

var http = require("http");

http.createServer(function(request, response) {
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.write("Hello World");
  response.end();
}).listen(8080);

执行你的js
node server.js

并检查

http://localhost:8080/