@goodware/mysql: A mysql2-promise helper
Links
Requirements
Features
- Creates database connections via mysql2-promise, optionally from a pool, with exponential backoff retry
- Handles AWS RDS IAM passwordless connections
- Optionally manages database transactions by wrapping begin end transaction commands around a function invocation, with an exception handler that executes rollback
- Same API whether using connection pooling or individual connections
- Same API whether using explicit or implicit transactions
Installation
npm i --save @goodware/mysql
If you don't intend to connect to RDS mysql using IAM passwordless login, you can reduce the size of node_modules by installing modules using npm ci --no-optional
.
Usage
- Create an instance of the MySqlConnection class (it is the default export)
- Call execute() or transaction() which accept a function that accepts a mysql2-promise Connection.
- 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);