创建一个小服务
var http = require("http");
function process_request(req,res) {
var body = 'Thanks for calling!\n';
var content_length = body.length;
res.writeHead(200,{
'Content-Length':content_length,
'Content-Type':'text/plain'
});
res.end(body);
}
var s = http.createServer(process_request);
s.listen(8080)
http模块允许创建服务器,可以食用require来引入模块
createServer 函数只会接受一个函数参数, 它会在用户连接到服务器时被调用。
多次执行node index.js可能会报错,原因是在你监听端口时这个线程会一直处于监听状态。
一句命令,停止某个端口
1.全局安装
npm install -g xl_close_port
2.关闭某一个端口 ( 8081 )
xl_close_port -p 8081
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。