You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@starbemtech/star-db-query-builder

Package Overview
Dependencies
Maintainers
0
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@starbemtech/star-db-query-builder

A query builder to be used with mysql or postgres

1.0.32
Source
npmnpm
Version published
Weekly downloads
226
137.89%
Maintainers
0
Weekly downloads
 
Created
Source

NodeJS Star DB Query Builder

🎉 Welcome to the NodeJS Database Library! This library provides a set of robust methods to interact with your database seamlessly. With TypeScript support, it ensures type safety and great developer experience.

Features

  • TypeScript Declarations: Ensure type safety and better autocompletion in your IDE.
  • Flexible Configuration: Easily initialize and configure the database client.
  • Comprehensive CRUD Operations: Perform Create, Read, Update, Delete operations with ease.
  • Join Queries: Execute complex join queries effortlessly.

Installation

// Use npm
$ npm install star-db-query-builder

// Use yarn
$ yarn add star-db-query-builder

// Use pnpm
$ pnpm install star-db-query-builder

Usage

Initialization

First, initialize the database with the appropriate configuration.

import { initDb, getDbClient } from 'star-db-query-builder';

// Use PostgresSQL
initDb({
  type: 'pg',
  options: {
     connectionURL: 'YOUR POSTGRES CONNECTION URL'
  },
});

// User MySQL
initDb({
  type: 'mysql',
  options: {
     url: 'YOUR MYSQL CONNECTION URL'
  },
});

// In your service, create an instance of getDbClient
const dbClient = getDbClient();

Methods

findFirst

Retrieve the first matching record from a table.

import { findFirst } from 'star-db-query-builder';

const result = await findFirst({
  tableName: 'users',
  dbClient,
  select: ['id', 'name', 'email'],
  where: {
    id: { operator: '=', value: 1 }
  }
});

console.log(result);

findMany

Retrieve multiple records from a table.

import { findMany } from 'star-db-query-builder';

const results = await findMany({
  tableName: 'users',
  dbClient,
  select: ['id', 'name', 'email'],
  where: {
    status: { operator: '= ', value: 'active' }
  },
  limit: 10,
  offset: 0,
});

console.log(results);

insert

Insert a new record into a table.

import { insert } from 'star-db-query-builder';

const newUser = { name: 'John Doe', email: 'john@example.com' };

const insertedUser = await insert({
  tableName: 'users',
  dbClient,
  data: newUser,
  returning: ['id', 'name', 'email'],
});

console.log(insertedUser);

update

Update an existing record in a table.

import { update } from 'star-db-query-builder';

const updatedUser = { name: 'John Smith' };

const result = await update({
  tableName: 'users',
  dbClient,
  id: 1,
  data: updatedUser,
  returning: ['id', 'name', 'email'],
});

console.log(result);

deleteOne

Delete a record from a table.

import { deleteOne } from 'star-db-query-builder';

await deleteOne({
  tableName: 'users',
  dbClient,
  id: 1,
  permanently: true,
});

console.log('User deleted');

joins

Execute a join query.

import { joins } from 'star-db-query-builder';

const joinResults = await joins({
  tableName: 'orders',
  dbClient,
  select: ['orders.id', 'users.name'],
  joins: [
    {
      table: 'users',
      on: { 'orders.userId': 'users.id' },
    },
  ],
  where: {
    JOINS: [
      {
        'users.id': { operator: '=', value: exist.user_id }
      }
    ]
  }
});

console.log(joinResults);

License

This project is licensed under the MIT License.

👨‍💻 Happy Coding!

Keywords

javascript

FAQs

Package last updated on 19 Feb 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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.