1.0.2 • Published 6 years ago

koa2-proxies v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

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

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago