欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用node搭建一个简单的服务器

程序员文章站 2022-05-08 23:51:43
...
  1. 引入http模块
  2. 利用http.createServer()创建服务
  3. 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中访问.....')
    })

相关标签: http node.js