2:创建WEB服务器

代码

// 引用系统模块
 const http = require('http');
  // 创建web服务器
 const app = http.createServer();
  // 当客户端发送请求的时候
 app.on('request', (req, res) => {
        //  响应
       res.end('<h1>hi, user</h1>');
 });
  // 监听3000端口
 app.listen(3000);
 console.log('服务器已启动,监听3000端口,请访问 localhost:3000')

2)在命令行窗口启动文件

PS D:\nodecode\server> node .\app.js
网站服务器启动成功
   

3)在浏览器输入:http://localhost:3000/

 

posted @ 2021-03-16 09:43  棉花糖88  阅读(51)  评论(0编辑  收藏  举报