Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

@soinlabs/db

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@soinlabs/db

A custom-made ORM from SOIN to manage different databases

  • 1.2.0-alpha.14
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
309
decreased by-31.64%
Maintainers
0
Weekly downloads
 
Created

@soinlabs/db - Database and ORM Library

codecov npm version npm downloads

Description

  • Library to encapsulate ORM schema and logic in order to support multiple database dialects based on multiple Object-Relational Mappers

How to use

Create db connection and execute raw queries

  • Open a simple connection
const dbOrm = new DbOrm()
dbOrm.initialize({
  orm: 'sequelize',
  dialect: 'postgres',
  version: '12.5.0',
  host: 'your_db_host',
  database: 'your_db_name',
  username: 'your_db_username',
  password: 'your_db_password',
  port: 5432,
  synchronize: false,
})

const db = new DbOrm({
  orm: 'sequelize',
  dialect: 'postgres',
  version: '12.5.0',
  host: 'your_db_host',
  database: 'your_db_name',
  username: 'your_db_username',
  password: 'your_db_password',
  port: 5432,
  synchronize: false,
})
  • Test your connection
testConnection = async () => {
  const result = await dbOrm.test()
  return result
}
  • Perform raw queries
async function demo() {
  const result = await db.execute(`SELECT * FROM your_table`)
  return result
}

Considerations according to DB Type

FAQs

Package last updated on 20 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts