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

学习nodejs之hello world

时间:2015-09-06 16:26:55      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

var http = require(‘http‘); //引用名称控件

server = http.createServer(function(req,res) {
    res.writeHead(200,{‘Content-Type‘:‘text/plain‘});
    res.end(‘hello world!‘);
}); //创建http server

server.listen(8000); //监听8000端口

console.log(‘httpd start @8000‘)


学习nodejs之hello world

标签:

原文地址:http://my.oschina.net/u/2351685/blog/501779

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