node创建http服务
Posted fu-liang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node创建http服务相关的知识,希望对你有一定的参考价值。
// 引入http核心模块
const http = require('http')
// 创建一个服务
var server = http.createServer()
//一个操作系统最多可开辟的进程数 0-65535,最好在1000-5000
// 启动监听
server.listen(8080,function()
console.log('服务器启动成功')
)
以上是关于node创建http服务的主要内容,如果未能解决你的问题,请参考以下文章