美文网首页PHP经验分享
node基本概念及运行规则

node基本概念及运行规则

作者: 野原浩二 | 来源:发表于2016-09-10 08:47 被阅读23次

    Nodejs概念:

    nodejs是运行javascript的编译环境。

    创建一个http服务:

    const http = require('http');
    const ip = '172.17.166.93';
    const port = 3000;
    var a = function (req, res){
    res.writeHead(200,{'content-type':'text/html'});
    res.write("<h1>*********</h1>");
    res.end('**********');
    }
    var server = http.createServer(a);
    var c =function(){
    console.log("server is running");
    }
    server.listen(port,ip,c);

    相关文章

      网友评论

        本文标题:node基本概念及运行规则

        本文链接:https://www.haomeiwen.com/subject/bfxyettx.html