Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@soinlabs/db

Package Overview
Dependencies
Maintainers
5
Versions
151
Alerts
File Explorer

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

latest
npmnpm
Version
1.2.0-alpha.25
Version published
Maintainers
5
Created
Source

@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

Keywords

db

FAQs

Package last updated on 04 Sep 2025

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