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

nodejs中搭建服务器

时间:2014-10-22 06:15:48      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   sp   div   

通过nodejs搭建一个HTTP服务器

//引入http模块
var http = require(‘http‘);

function onReg(req,res){
    res.writeHead(200,{"Content-Type:text/plain;charset=utf-8"});
    res.write(‘Hello World!‘);
    res.end();
}

http.createServer(onReg).listen(8080);

 

我们刚刚完成了一个可以工作的HTTP 服务器。为了证明这一点,我们来运行并且测试这段代
码。打开浏览器访问hp://localhost:8080/,你会看到一个写着“Hello World”的网页。

nodejs中搭建服务器

标签:style   blog   http   color   io   os   ar   sp   div   

原文地址:http://www.cnblogs.com/zhouhaiou/p/4042095.html

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