码迷,mamicode.com
首页 > Web开发 > 详细

node.js 创建HTTP服务器

时间:2014-08-02 18:05:13      阅读:224      评论:0      收藏:0      [点我收藏+]

标签: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

node.js 创建HTTP服务器

标签:style   blog   http   color   io   cti   ar   div   

原文地址:http://www.cnblogs.com/xieyier/p/3887087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!