koa2-proxies

1.0.2 • Public • Published

koa2 proxies

Powered by request 基于request的用于koa2的代理中间件 npm install koa2-proxies

example

const koa = require('koa2')
 
const app = new koa()
const proxy = require('koa2-proxies')
const proxyUrl = ['/v2']
app.use(async function  (ctx, next) {
  console.log(ctx.path)
  if (proxyUrl.some(i => ctx.path.indexOf(i) === 0)) {
    await proxy({host: 'http://api.douban.com', ctx})
  } else {
    await next()
  }
})
 
const port = 4567
app.listen(port, () => console.log(`==> Listening at http://localhost:${port}`))
 

then visit http://127.0.0.1:4567/v2/movie/subject/26865690

/koa2-proxies/

    Package Sidebar

    Install

    npm i koa2-proxies

    Weekly Downloads

    1

    Version

    1.0.2

    License

    ISC

    Last publish

    Collaborators

    • hpoenixf