标签: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 服务器。为了证明这一点,我们来运行并且测试这段代
码。打开浏览器访问hp://localhost:8080/,你会看到一个写着“Hello World”的网页。
标签:style blog http color io os ar sp div
原文地址:http://www.cnblogs.com/zhouhaiou/p/4042095.html