npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@starbemtech/star-db-query-builder

v1.0.29

Published

A query builder to be used with mysql or postgres

Downloads

1,804

Readme

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: '[email protected]' };

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!