美文网首页
创建一个服务器

创建一个服务器

作者: 嗷呜_哒哒哒 | 来源:发表于2019-04-25 14:33 被阅读0次

    我们使用http.createServer()方法创建服务器,并使用listen方法绑定8888端口.函数通过request,response参数来接受和响应数据.

    var http = require("http")
    http.createServer(function(request,response){
          //发送http头部
          //http状态码200 正常
          //内容类型 text/plain
          response.writeHead(200,{'Content-Type':'text/plain'});
    
          发送响应数据"hello,world"
          response.end('hello,world\n')
    }).listen(8888);
    
    //终端打印信息如下:
    console.log('Server running at http://127.0.0.1:8888/')
    

    使用node命令执行以上代码:

    node server.js
    Server running at http://127.0.0.1:8888/

    相关文章

      网友评论

          本文标题:创建一个服务器

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