pure http:Node零依赖的Node.js的简单Web框架 源码
纯HTTP 将中间件和路由器添加到本地http。 安装 $ npm install --save pure-http 用法 基本服务器: const pureHttp = require ( 'pure-http' ) ; const app = pureHttp ( ) ; app . get ( '/' , ( req , res ) => { res . send ( 'Hello world' ) ; } ) ; app . listen ( 3000 ) ; 现有服务器: const http = require ( 'http' ) ; const pureHttp =
用户评论