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服务的主要内容,如果未能解决你的问题,请参考以下文章

node http服务

node.js中使用http模块创建服务器和客户端

02 Node.js学习之http服务

为 http 服务器 (node.js) 创建 tcp 服务器

如何创建一个基于Node的HTTP服务器

node-http创建服务端和客户端