egg-proxy

v2.0.0-beta.1
proxy plugin for egg
egg eggPlugin egg-plugin proxy egg-proxy

egg-proxy

NPM version build status Test coverage David deps Known Vulnerabilities npm download

request proxy plugin for egg framework. based on koa-proxy

Install

$ npm i egg-proxy --save

Usage

// {app_root}/config/plugin.js
exports.proxy = {
  enable: true,
  package: 'egg-proxy',
};

Configuration

Single:

// {app_root}/config/config.default.js
exports.proxy = {
  host: 'http://localhost:9000', // target host that matched path will be proxy to
  match: /\/assets/ // path pattern.
};

Multiple:

// {app_root}/config/config.default.js
exports.proxy = [{
  host: 'host1',
  match: /\/assets1/
}, {
  host: 'host2',
  match: /\/assets2/
}];

see config/config.default.js for more detail.

Example

Questions & Suggestions

Please open an issue here.

License

MIT

npm i egg-proxy

Metadata

  • MIT
  • >=6.0.0
  • xyeric
  • released 7/2/2021

Downloads

Maintainers