文件名称:hapi-utils:我的Hapi.js实用程序功能
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-04 22:38:34
JavaScript
hapi-utils 我的Hapi.js实用程序功能 用法 createRoute 使用处理程序功能定义路由。 // Normal server.route({ method: 'GET', path: '/path/to/endpoint', options: { validate: {}, auth: 'jwt' }, handler: (req, h) => {} }) 与createRoute // handlers.js module.exports = { myHandler: { options: {}, handler: (req, h) => {} } } // route.js const { myHandler } = require('./handlers') createRoute('GET', '
【文件预览】:
hapi-utils-master
----package.json(441B)
----test()
--------createRoute.spec.js(887B)
--------combineRoutes.spec.js(351B)
--------validateAuth.spec.js(808B)
----LICENSE(1KB)
----.gitignore(908B)
----lib()
--------index.js(559B)
----README.md(706B)
----.editorconfig(160B)