@goodware/mysql: A mysql2-based connection helper
Links
Requirements
- ES5+ (lts/dubnium or later is recommended)
Features
- Creates database connections via mysql2-promise, optionally from a pool, with exponential backoff retry
- Handles AWS RDS passwordless IAM connections
- Optionally manages database transactions by wrapping begin end transaction comments around a function invocation
- Same API whether using connection pooling or individual connections
- Same API whether using explicit or implicit transactions
Installation
npm i --save @goodware/mysql
Breaking change! Peer dependencies for versions 3+
All runtime dependencies in version 3 were changed to use peer dependencies.
If you're missing a dependency, you have three options:
- Stick with version 2.x
npm i --save @goodware/mysql@2
Or, in package.json dependencies:
"@goodware/mysql": "^2.0.0"
- Add the missing dependencies to your package.json
- Upgrade to npm version 7
npm i -g npm@7
Usage
- Create an instance of the MySqlConnection class (it is the default export)
- Call execute() or transaction(). These accept a function that accepts a mysql2-promise connection object. The provided functions usually call query() on the connection object.
- If you're using connection pooling, call stop() to close the connections in the pool. This is necessary if:
- The app instantiates multiple instances to access the same database server. It is recommended to use a single global instance to avoid this issue.
- The app hangs instead of terminating
Logger
The options provided by the constructor and all other methods accept an optional 'logger' function or object. If an object is provided, it must have the method log().
interface Logger {
log(tags: string[] | string, message: Record<string, unknown>): void;
}
Example
The following program outputs 'success' to the console.
const mysql = require('@goodware/mysql');
const config = {
password: 'password',
usePool: true,
};
async () => {
const connector = new mysql(config, console.log);
const result = await connector.execute( async (connection) => {
const [results] = await connection.query(`select 'success' AS status`);
return results[0].status;
});
await connector.stop();
return result;
}().then(console.info, console.error);