- 引入http模块
- 利用http.createServer()创建服务
- listen()来启动服务
-
下面代码
-
// 1.引入http模块 const http = require('http') // 2.搭建服务 req--请求 res--响应 const server = http.createServer(function(req,res){ // res.end() 接受响应的结果 如果没有页面会死循环 console.log('有人访问了') res.end() }) 3. server.listen(8080,()=>{ console.log('服务器启动成功,请在http://localhost:8080中访问.....') })