egg-proxy
TypeScript icon, indicating that this package has built-in type declarations

2.0.0-beta.1 • Public • Published

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

Package Sidebar

Install

npm i egg-proxy

Weekly Downloads

40

Version

2.0.0-beta.1

License

MIT

Unpacked Size

7.32 kB

Total Files

7

Last publish

Collaborators

  • qeric