0.1.0 • Published 7 years ago

koav-api-proxy v0.1.0

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

koa-api-proxy

koa2 http proxy middleware

Added

  • 支持文件上传

目前支持: http 基本请求 post,get,put

使用方法:

const Koa = require('koa')
const app = new Koa();
const proxy = require('./')


/**
 * use config single
 * @type {[type]}
 */
app.use(proxy('http://www.google.com', {
  match: '/test',
  jar: true
}))

/**
 * use config multi
 * @type {[type]}
 */
app.use(proxy([{
  target: 'http://www.google.com',
  match: ['/dist', '/dist2'], //
  jar: true
}, {
  target: 'http://www.yahoo.com',
  match: '/t',
  jar: true
}]))
0.1.0

7 years ago

0.0.9

7 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago