创建node.js一个简单的应用实例

时间:2024-10-24 10:33:38

在node.exe所在目录下,创建一个叫 server.js 的文件,并写入以下代码:

 //使用 require 指令来载入 http 模块
var http = require("http"); //使用 http.createServer() 方法创建服务器,函数通过 request, response 参数来接收和响应数据.
http.createServer(function(request, response) {
// 发送 HTTP 头部
// HTTP 状态值: 200 : OK
// 内容类型: text/html
response.writeHead(200, {"Content-Type": "text/html"});
response.write("Hello World!");
response.end();
}).listen(8080); //使用listen方法绑定8080端口 //终端打印
console.log("Server running at http://localhost:8080/");

去命令行,进入node.exe所在目录(不会进的参见http://www.cnblogs.com/realcare/p/6045956.html)。

键入node server.js,如下图所示:

创建node.js一个简单的应用实例

接下来,打开浏览器访问http://localhost:8080/,你会看到一个写着 "Hello World"的网页。

创建node.js一个简单的应用实例

以上就是node.js一个简单的应用,有问题的朋友一起交流哈~