标签: Node.js 示例

后浪云Node.js教程:Node.js 示例

第一个服务器的例子就从 “Hello World” 开始: var http = require('http'); http.createServer(function (request, response) { response.writeHead(200, ……