node-microrest:微小的可嵌入REST Web框架

时间:2024-06-05 09:39:30
【文件属性】:

文件名称:node-microrest:微小的可嵌入REST Web框架

文件大小:42KB

文件格式:ZIP

更新时间:2024-06-05 09:39:30

JavaScript

微支架 当大小和速度很重要时,非常小的,非常快的REST框架。 也非常适合将Web API嵌入到现有应用程序中。 用作具有中间件步骤和路由参数(rest_mw)的完全路由的应用程序: const rest = require('microrest'); const mw = rest.mw; const app = rest(); app.use(mw.mwParseQuery); app.use(mw.mwReadBody); app.get('/hello/:arg1/:arg2', (req, res, next) => { // request body available in req.body // query params and arg1, arg2 available in req.params res.end(); next();


【文件预览】:
node-microrest-master
----package.json(740B)
----mw.js(11KB)
----test-mw.js(25KB)
----.travis.yml(290B)
----rest.js(11KB)
----index.js(945B)
----test-router.js(26KB)
----README.md(5KB)
----benchmark.js(17KB)
----test-index.js(2KB)
----test-rest.js(46KB)
----MANUAL.md(17KB)
----router.js(8KB)

网友评论