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