标签:cti OLE 核心模块 code 进程 console ons log 创建
// 引入http核心模块
const http = require('http')
// 创建一个服务
var server = http.createServer()
//一个操作系统最多可开辟的进程数 0-65535,最好在1000-5000
// 启动监听
server.listen(8080,function(){
console.log('服务器启动成功')
})
标签:cti OLE 核心模块 code 进程 console ons log 创建
原文地址:https://www.cnblogs.com/fu-liang/p/11568517.html