文件名称:koa-redirects:[koa-redirects]使用前缀对koa进行重定向
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-10 02:42:40
JavaScript
Koa重定向 使用prefix重定向 map支持 例子 const redirects = require ( 'koa-redirects' ) const koa = require ( 'koa' ) const app = koa ( ) redirects ( app , { prefix : '/api/v2' , map : { 'auth' : 'http://some.com/api/oauth' } } ) // or // redirects(app, '/api/v2') app . use ( function * ( ) { this . redirects ( '/bar' ) } ) app . use ( function * ( ) { this . redirects ( 'auth' ) } ) 执照 麻省理工学院
【文件预览】:
koa-redirects-master
----Readme.md(1KB)
----.travis.yml(153B)
----test()
--------index.js(4KB)
----.gitignore(48B)
----index.js(601B)
----package.json(705B)