创建一个服务器

我们使用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/

你可能感兴趣的:(创建一个服务器)