node进修

建立一个小效劳

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
    原文作者:BlazeXue
    原文地址: https://segmentfault.com/a/1190000017173269
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞