用nodejs搭建一个服务器

const http = require('http'); //引入http模块

const hostname = '127.0.0.1'; //定义主机名
const port = 3000; //定义端口号

//开启一个服务器
const server = http.createServer((req, res) => {
  res.statusCode = 200; //返回状态码,200表示成功
  res.setHeader('Content-Type', 'text/html'); //设置响应头,文本按html解析
  res.end('Hello World\n'); //响应文本并结束
});

//服务器监听端口号和主机名
server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

//用node命令启动,在浏览器输入 http://127.0.0.1:3000/

用node命令启动,在浏览器输入 http://127.0.0.1:3000/

可以看到服务器搭建完成了

用nodejs搭建一个服务器_第1张图片
image.png

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