1.1.7 • Published 4 years ago

egg-datasource v1.1.7

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

egg-datasource

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

Install

$ npm i egg-datasource --save

Usage

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

Configuration

// {app_root}/config/config.default.js
exports.datasource = {
  projectName: {
    mocking: false, // 是否开启mock模式
    mockUrl: 'https://test.com', // mock url
    protocol: 'http', // 正式使用的协议
    host: 'data.com',
    port: '8080',
    path: '',
    onStart(ctx) { // 代理请求前钩子
      // ...
    },
    onEnd(ctx) { // 代理请求后钩子
      // ...
    }
  }
};

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

Example

Questions & Suggestions

Please open an issue here.

License

MIT

1.1.7

4 years ago

1.1.6

4 years ago

1.1.5

5 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago