读书笔记之-node入门

来源:互联网 发布:淘宝举报售假要求 编辑:程序博客网 时间:2024/05/17 06:34

12月26日  http://www.nodebeginner.org/index-zh-cn.html

构建HTTP服务器


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 server.js
0 0