1.0.3 • Published 4 years ago
@hyoga/egg-mysql v1.0.3
@hyoga/egg-mysql
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.