首页 > 代码库 > node.js 创建HTTP服务器

node.js 创建HTTP服务器

这个才是我们学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

完!!

一个属于自己的服务器就这样诞生了!!!