Skip to content

aaaaaajie/node-dbs

Repository files navigation

Install

$ npm install node-dbs

Description

目前支持的数据库 mysql、mongodb

Example usage

js

const { MySQLClient } = require("node-dbs");

const DBConf = {
  user: "root",
  password: "123456",
  database: "db",
  host: "127.0.0.1",
};

const client = new MySQLClient(DBConf);

client.query("select * from tb").then((result) => {
  console.log(result);
});

TS

import { BaseDB, MysqlInterface, MySQLClient, DataType, InputDataType } from 'node-dbs'

const DBConf = {
  user: 'root',
  password: '123456',
  database: 'db',
  host: '127.0.0.1'
}
const client: MysqlInterface = new MySQLClient(DBConf: object)
client.query("select * from tb")).then(result=>{
  console.log(result)
})

API Docs

http://node-dbs.ipenman.top

GitHub 链接地址

Github

About

nodejs数据库驱动,支持多种数据库连接和扩展

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published