@stackpress/inquire-mysql2
v0.6.2
Published
Generic typed mysql2
Maintainers
Readme
💬 Inquire - MySQL2
MySQL2 connection for the Inquire library.
Install
$ npm i @stackpress/inquire-mysql2Usage
import mysql from 'mysql2/promise';
import connect from '@stackpress/inquire-mysql2';
//this is the raw resource, anything you want
const resource = await mysql.createConnection({
host: 'localhost',
user: 'root',
database: 'inquire',
});
//this maps the resource to the engine
const engine = connect(resource);