文件名称:incito:将功能转换为Web服务器的最简单方法!
文件大小:75KB
文件格式:ZIP
更新时间:2024-05-23 04:49:27
testing middleware integration axios supertest
incito 安装 npm install incito --save const incito = require ( 'incito' ) ; 用法 简单的http服务器 const server = incito ( ) ; const port = server . port ; 具有侦听器的HTTP服务器 function handle ( ) { // magical request handling code } const server = incito ( handle ) ; 快递http服务器 const app = express ( ) ; const server = incito ( app ) ; koa http服务器 const app = new Koa ( ) ; const server = incito ( app . callback (
【文件预览】:
incito-master
----.gitignore(667B)
----package.json(1KB)
----package-lock.json(293KB)
----.travis.yml(530B)
----index.js(526B)
----.eslintrc.js(301B)
----license(1KB)
----.eslintignore(9B)
----lib()
--------server.js(3KB)
----.nycrc.json(57B)
----readme.md(1KB)
----test()
--------index.js(708B)
--------lib()