使用http模块构建一个服务器

代码如下:

const http = require(‘http‘);
/*
	request 获取url传来的信息
	response 给浏览器的响应信息
*/ 
http.createServer(function (request, response) {
  // 设置响应头
  response.writeHead(200, {‘Content-Type‘: ‘text/plain‘});
  // 表明响应头已发送完成,不可缺
  response.end(‘Hello World‘);
    
  // 也可以采用链式写法
  response.writeHead().end()
}).listen(8081);

console.log(‘Server running at http://127.0.0.1:8081/‘);

使用http模块构建一个服务器

上一篇:js对象的遍历


下一篇:教你玩转CSS margin(外边距)