1.0.3 • Published 4 years ago

@hyoga/egg-mysql v1.0.3

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

@hyoga/egg-mysql

NPM version npm download

Install

$ npm i @hyoga/egg-mysql --save

Usage

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

Configuration

// {app_root}/config/config.default.js
exports.mysql = {
  mysql: {
    client: {
      host: '127.0.0.1',
      port: '3306',
      user: 'root',
      password: '',
      database: 'db',
    },
    // 是否加载到 app 上,默认开启
    app: true,
    // 是否加载到 agent 上,默认关闭
    agent: false,
  },
};

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

Example

Questions & Suggestions

Please open an issue here.

License

MIT

1.0.3

4 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago