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
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞