标签:style blog http color io cti ar div
这个才是我们学node.js的真正原因,服务器!
1、新建一个 index.js 写下
var myhttp=require(‘http‘); myhttp.createServer(function(req,res){ res.writeHead(200,{‘Content-Type‘:‘‘text/thml‘‘}); res.write(‘<h1>my http</h1>‘); res.write(‘<p>he he</p>‘); res.end(<p>end</p>); }).listen(3030);
2.打开cmd ,运行node index.js
3. 打开浏览器 输入http://127.0.0.1:3030
完!!
一个属于自己的服务器就这样诞生了!!!
node.js 创建HTTP服务器,布布扣,bubuko.com
标签:style blog http color io cti ar div
原文地址:http://www.cnblogs.com/xieyier/p/3887087.html