@trex-arms/ley-driver-mysql2-esm
v0.0.2
Published
ESM-compatible mysql2 driver for @lukeed/ley
Downloads
2
Readme
ley-driver-mysql2-esm
ESM-compatible mysql2 driver for @lukeed/ley
how is it different?
instead of your migration looking like this...
const whatever = require('whatever')
exports.up = async client => {
// ...
}
exports.down = async client => {
// ...
}
...you can now write your exports like this...
import whatever from 'whatever'
export const up = async client => {
// ...
}
export const down = async client => {
// ...
}
✨✨awesome✨✨
how?
npm install mysql2 --save
npm install @trex-arms/ley-driver-mysql2-esm --save
Important:
mysql2
must be installed separately. That way, you control which version you want to use.
Then, toss this driver
param into your ley.config.js
:
{
driver: require('@trex-arms/ley-driver-mysql2-esm'),
// ...
}
Or include the driver another way.
license/credit
Original copyright: Luke Edwards 2021
The code was copied from: https://github.com/lukeed/ley/blob/master/lib/clients/mysql2.js