1.0.0 • Published 5 years ago

nestjs-mysql v1.0.0

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

nestjs-mysql

Installation

$ npm install @quickts/nestjs-mysql promise-mysql

Usage

import { MysqlPool } from "@quickts/nestjs-mysql";
import { Pool } from "promise-mysql";

@Injectable()
export class SomeClass implements OnMysqlPoolInit {
    @MysqlPool() // 使用装饰器注入
    pool: Pool;

    onMysqlPoolInit(pool: Pool) {
        this.pool = pool; // 实现接口自行赋值
    }
}