文件名称:small-router-middleware:处理请求的小型路由器中间件(类似于express)
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-21 07:15:18
JavaScript
小型路由器中间件 处理请求的小型路由器中间件(类似于expresses) var router = require('small-router-middleware')(); router.get('/foo', function (req, res, next) { res.send('foo'); }); router.post('/foo', function (req, res, next) { res.send('foo'); }); router.post('/foo/{num}/{word}', function (req, res, next, args) { // if called '/foo/123/bar // args[0] = '/foo/123/bar // args[1] = '123' // args[2] = 'bar res.send
【文件预览】:
small-router-middleware-master
----.travis.yml(66B)
----index.js(2KB)
----package.json(699B)
----test()
--------index.js(6KB)
----LICENSE(1KB)
----.gitignore(587B)
----README.md(537B)