egg-proxy

proxy plugin for egg

Usage no npm install needed!

<script type="module">
  import eggProxy from 'https://cdn.skypack.dev/egg-proxy';
</script>

README

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