0.3.0 • Published 5 years ago
mysql-kit v0.3.0
MySQL-Kit
MySQL toolkit base on mysql package.
- Promisify
querymethod ofmysql - Some common shorthand methodes
findfindOnefindOneByIdfindOneByQueryhasinsertinsertAndFindupdateupdateAndFind
Usage
Install
# Use yarn
yarn add mysql mysql-kit
yarn add -D @types/mysql
# Use npm
npm install mysql mysql-kit
npm install -D @types/mysqlUse
import connect, { query } from 'mysql-kit'
// Your mysql config
const config = {}
await connect(config)
query('show tables')Test Coverage
| File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s |
|---|---|---|---|---|---|
| All files | 92 | 70.73 | 93.1 | 91.95 | |
| connect.ts | 100 | 83.33 | 100 | 100 | 38 |
| index.ts | 100 | 100 | 100 | 100 | |
| query.ts | 87.1 | 67.74 | 90 | 87.04 | 15-16,22-25,85 |
| tools.ts | 100 | 75 | 100 | 100 | 3 |