标签:style blog http io color ar os sp div
node.js提供了一个创建自己服务器的方式,用起来很简单,首先引用http模块
//引用HTTP模板 var http = require(‘http‘);
创建服务实例:http.createServer
//引用HTTP模板 var http = require(‘http‘); http.createServer(function(req,res){ res.writeHead(200,{‘Content-Type‘:‘text/html‘}); res.end(‘hello World‘); }).listen(3000);
req:请求对象
res:响应对象
标签:style blog http io color ar os sp div
原文地址:http://www.cnblogs.com/kuailingmin/p/4097644.html