How to use the @cloudbase/database.Db.reqClass function in @cloudbase/database

To help you get started, we’ve selected a few @cloudbase/database examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github TencentCloudBase / tcb-admin-node / index.js View on Github external
Tcb.prototype.database = function(dbConfig = {}) {
  Db.reqClass = Request
  if (Object.prototype.toString.call(dbConfig).slice(8, -1) !== 'Object') {
    throw Error('dbConfig must be an object')
  }

  if (dbConfig && dbConfig.env) {
    // env变量名转换
    dbConfig.envName = dbConfig.env
    delete dbConfig.env
  }
  this.config = Object.assign(this.config, dbConfig)
  return new Db({ ...this })
}

@cloudbase/database

database for (node.)js sdk

ISC
Latest version published 1 year ago

Package Health Score

43 / 100
Full package analysis

Popular @cloudbase/database functions

Similar packages