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

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

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

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

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

 

 

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