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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@deebeetech/sqleasy

v3.0.0

Published

Lightweight SQL builder and parser for MSSQL, MySQL, Postgres, and SQLite.

Readme

SQLEasy is a lightweight, zero-dependency SQL query builder. It composes dialect-correct SELECT / INSERT / UPDATE / DELETE — plus CTEs, unions, and batched transactions — with a fluent API, and hands you the SQL string and its bound parameters.

It is not a driver or an ORM. You bring your own connection (pg, mysql2, better-sqlite3, mssql, libSQL, …) and run what SQLEasy generates. That focus is the point: correct SQL for four dialects — identifier quoting, placeholder style, default schemas, and transaction wrappers — and nothing you have to wire around.

Part of the DeeBee ecosystem.

Installation

npm

npm install @deebeetech/sqleasy

JSR

npx jsr add @deebeetech/sqleasy

Quick Start

import { PostgresQuery, WhereOperator } from '@deebeetech/sqleasy';

const query = new PostgresQuery();
const builder = query.newBuilder();

builder
  .selectColumn('u', 'id', '')
  .selectColumn('u', 'name', 'userName')
  .fromTable('users', 'u')
  .where('u', 'active', WhereOperator.Equals, true);

console.log(builder.parseRaw());
// SELECT "u"."id", "u"."name" AS "userName" FROM "public"."users" AS "u" WHERE "u"."active" = true;

const { sql, params } = builder.parsePrepared();
// sql:    SELECT "u"."id", "u"."name" AS "userName" FROM "public"."users" AS "u" WHERE "u"."active" = $1;
// params: [true]   ← hand straight to your driver: client.query(sql, params)

Database Support

Each dialect has its own entry point that handles identifier quoting, placeholder syntax, default schemas, and transaction delimiters automatically.

import { MssqlQuery, MysqlQuery, PostgresQuery, SqliteQuery } from '@deebeetech/sqleasy';

const mssql = new MssqlQuery(); // [dbo].[table], ? placeholders, BEGIN TRANSACTION/COMMIT TRANSACTION
const mysql = new MysqlQuery(); // `table`, ? placeholders, START TRANSACTION/COMMIT
const postgres = new PostgresQuery(); // "public"."table", $1 placeholders, BEGIN/COMMIT
const sqlite = new SqliteQuery(); // "table", ? placeholders, BEGIN/COMMIT

Query Examples

SELECT

const query = new PostgresQuery();
const builder = query.newBuilder();

// Select all columns
builder.selectAll().fromTable('users', 'u');
// SELECT * FROM "public"."users" AS "u";

// Select specific columns
builder.clearAll();
builder.selectColumn('u', 'id', '').selectColumn('u', 'name', 'userName').fromTable('users', 'u');
// SELECT "u"."id", "u"."name" AS "userName" FROM "public"."users" AS "u";

// DISTINCT
builder.clearAll();
builder.distinct().selectColumn('u', 'name', '').fromTable('users', 'u');
// SELECT DISTINCT "u"."name" FROM "public"."users" AS "u";

// Raw expression
builder.clearAll();
builder.selectRaw('COUNT(*) AS total').fromTable('users', 'u');
// SELECT COUNT(*) AS total FROM "public"."users" AS "u";

// Scalar sub-query in SELECT
builder.clearAll();
builder
  .selectAll()
  .selectWithBuilder('orderCount', (sb) => {
    sb.selectRaw('COUNT(*)').fromTable('orders', 'o');
  })
  .fromTable('users', 'u');
// SELECT *, (SELECT COUNT(*) FROM "public"."orders" AS "o") AS "orderCount" FROM "public"."users" AS "u";

WHERE

import { WhereOperator } from '@deebeetech/sqleasy';

const builder = new PostgresQuery().newBuilder();

// Comparison operators
builder
  .selectAll()
  .fromTable('users', 'u')
  .where('u', 'age', WhereOperator.GreaterThanOrEquals, 18);

// AND / OR
builder.clearAll();
builder
  .selectAll()
  .fromTable('users', 'u')
  .where('u', 'active', WhereOperator.Equals, true)
  .and()
  .where('u', 'age', WhereOperator.GreaterThan, 21);

// BETWEEN
builder.clearAll();
builder.selectAll().fromTable('users', 'u').whereBetween('u', 'age', 18, 65);

// IS NULL / IS NOT NULL
builder.clearAll();
builder.selectAll().fromTable('users', 'u').whereNotNull('u', 'email');

// IN (values)
builder.clearAll();
builder.selectAll().fromTable('users', 'u').whereInValues('u', 'role', ['admin', 'moderator']);

// IN (sub-query)
builder.clearAll();
builder
  .selectAll()
  .fromTable('users', 'u')
  .whereInWithBuilder('u', 'id', (sb) => {
    sb.selectColumn('o', 'user_id', '').fromTable('orders', 'o');
  });

// Grouped conditions
builder.clearAll();
builder
  .selectAll()
  .fromTable('users', 'u')
  .where('u', 'active', WhereOperator.Equals, true)
  .and()
  .whereGroup((gb) => {
    gb.where('u', 'role', WhereOperator.Equals, 'admin')
      .or()
      .where('u', 'role', WhereOperator.Equals, 'moderator');
  });

JOIN

import { JoinType, JoinOperator } from '@deebeetech/sqleasy';

const builder = new PostgresQuery().newBuilder();

builder
  .selectAll()
  .fromTable('users', 'u')
  .joinTable(JoinType.Inner, 'orders', 'o', (jb) => {
    jb.on('u', 'id', JoinOperator.Equals, 'o', 'user_id');
  });
// SELECT * FROM "public"."users" AS "u"
//   INNER JOIN "public"."orders" AS "o" ON "u"."id" = "o"."user_id";

// Multiple ON conditions
builder.clearAll();
builder
  .selectAll()
  .fromTable('users', 'u')
  .joinTable(JoinType.Inner, 'orders', 'o', (jb) => {
    jb.on('u', 'id', JoinOperator.Equals, 'o', 'user_id')
      .and()
      .on('u', 'tenant_id', JoinOperator.Equals, 'o', 'tenant_id');
  });

// Multiple joins
builder.clearAll();
builder
  .selectAll()
  .fromTable('users', 'u')
  .joinTable(JoinType.Inner, 'orders', 'o', (jb) => {
    jb.on('u', 'id', JoinOperator.Equals, 'o', 'user_id');
  })
  .joinTable(JoinType.Left, 'products', 'p', (jb) => {
    jb.on('o', 'product_id', JoinOperator.Equals, 'p', 'id');
  });

// Join with sub-query
builder.clearAll();
builder
  .selectAll()
  .fromTable('users', 'u')
  .joinWithBuilder(
    JoinType.Inner,
    'recent_orders',
    (sb) => {
      sb.selectAll()
        .fromTable('orders', 'o')
        .where('o', 'created_at', WhereOperator.GreaterThan, '2024-01-01');
    },
    (jb) => {
      jb.on('u', 'id', JoinOperator.Equals, 'recent_orders', 'user_id');
    },
  );

INSERT

const builder = new PostgresQuery().newBuilder();

builder
  .insertInto('users')
  .insertColumns(['name', 'email', 'age'])
  .insertValues(['John', '[email protected]', 30]);
// INSERT INTO "public"."users" ("name", "email", "age") VALUES (John, [email protected], 30);

// Multi-row insert
builder.clearAll();
builder
  .insertInto('users')
  .insertColumns(['name', 'email'])
  .insertValues(['John', '[email protected]'])
  .insertValues(['Jane', '[email protected]']);
// INSERT INTO "public"."users" ("name", "email") VALUES (John, [email protected]), (Jane, [email protected]);

UPDATE

const builder = new PostgresQuery().newBuilder();

builder
  .updateTable('users', 'u')
  .set('name', 'John Updated')
  .set('age', 31)
  .where('u', 'id', WhereOperator.Equals, 1);
// UPDATE "public"."users" AS "u" SET "name" = John Updated, "age" = 31 WHERE "u"."id" = 1;

// Raw SET expression
builder.clearAll();
builder
  .updateTable('users', 'u')
  .setRaw('"login_count" = "login_count" + 1')
  .where('u', 'id', WhereOperator.Equals, 1);

DELETE

const builder = new PostgresQuery().newBuilder();

builder.deleteFrom('users', 'u').where('u', 'id', WhereOperator.Equals, 1);
// DELETE FROM "public"."users" AS "u" WHERE "u"."id" = 1;

ORDER BY / LIMIT / OFFSET

import { OrderByDirection } from '@deebeetech/sqleasy';

const builder = new PostgresQuery().newBuilder();

builder
  .selectAll()
  .fromTable('users', 'u')
  .orderByColumn('u', 'name', OrderByDirection.Ascending)
  .limit(10)
  .offset(20);

GROUP BY / HAVING

const builder = new PostgresQuery().newBuilder();

builder
  .selectColumn('u', 'role', '')
  .selectRaw('COUNT(*) AS cnt')
  .fromTable('users', 'u')
  .groupByColumn('u', 'role')
  .having('u', 'role', WhereOperator.NotEquals, 'guest');

Common Table Expressions (CTEs)

const builder = new PostgresQuery().newBuilder();

builder
  .cte('active_users', (cb) => {
    cb.selectAll().fromTable('users', 'u').where('u', 'active', WhereOperator.Equals, true);
  })
  .selectAll()
  .fromRaw('"active_users" AS "au"');
// WITH "active_users" AS (SELECT * FROM "public"."users" AS "u" WHERE "u"."active" = true)
//   SELECT * FROM "active_users" AS "au";

// Recursive CTE
builder.clearAll();
builder
  .cteRecursive('hierarchy', (cb) => {
    cb.selectColumn('e', 'id', '')
      .selectColumn('e', 'name', '')
      .selectColumn('e', 'manager_id', '')
      .fromTable('employees', 'e')
      .where('e', 'manager_id', WhereOperator.Equals, 1);
  })
  .selectAll()
  .fromRaw('"hierarchy" AS "h"');

UNION / INTERSECT / EXCEPT

const builder = new PostgresQuery().newBuilder();

builder
  .selectColumn('u', 'name', '')
  .fromTable('users', 'u')
  .union((ub) => {
    ub.selectColumn('c', 'name', '').fromTable('customers', 'c');
  });

// Also available: unionAll(), intersect(), except()

Multi-Builder (Batched Statements)

Compose multiple statements into a single SQL string, optionally wrapped in a transaction — the headline feature for shipping a set of writes as one atomic unit.

import { PostgresQuery, MultiBuilderTransactionState, WhereOperator } from '@deebeetech/sqleasy';

const query = new PostgresQuery();
const multi = query.newMultiBuilder();

const b1 = multi.addBuilder('insert_user');
b1.insertInto('users').insertColumns(['name', 'email']).insertValues(['John', '[email protected]']);

const b2 = multi.addBuilder('update_count');
b2.updateTable('stats', 's').set('user_count', 100).where('s', 'id', WhereOperator.Equals, 1);

console.log(multi.parseRaw());
// BEGIN; INSERT INTO "public"."users" ("name", "email") VALUES (John, [email protected]);UPDATE "public"."stats" AS "s" SET "user_count" = 100 WHERE "s"."id" = 1;COMMIT;

// Named builders can be removed or reordered before rendering
multi.reorderBuilders(['update_count', 'insert_user']);
multi.removeBuilder('update_count');

// Disable transaction wrapping (statements are emitted back-to-back, no BEGIN/COMMIT)
multi.setTransactionState(MultiBuilderTransactionState.TransactionOff);

Prepared Statements vs Raw SQL

Every builder offers three renderings:

  • parsePrepared() — the execution-safe one. Returns { sql, params }: SQL with dialect placeholders (? for MSSQL/MySQL/SQLite, $1/$2/… for Postgres) plus the ordered bound values. Hand it straight to your driver.
  • parse() — the SQL string with placeholders, without the values (handy for logging the shape).
  • parseRaw() — values inlined into the SQL. Debug / display only — it is not escaped and not execution-safe. Never run parseRaw() output against a database.
const builder = new PostgresQuery().newBuilder();
builder.selectAll().fromTable('users', 'u').where('u', 'id', WhereOperator.Equals, 42);

builder.parsePrepared(); // { sql: 'SELECT * FROM "public"."users" AS "u" WHERE "u"."id" = $1;', params: [42] }
builder.parse(); // SELECT * FROM "public"."users" AS "u" WHERE "u"."id" = $1;
builder.parseRaw(); // SELECT * FROM "public"."users" AS "u" WHERE "u"."id" = 42;   (debug only)

Configuration

Pass a RuntimeConfiguration to customize behavior:

import { PostgresQuery, RuntimeConfiguration } from '@deebeetech/sqleasy';

const rc = new RuntimeConfiguration();
rc.maxRowsReturned = 500;
rc.customConfiguration = { timeout: 30 };

const query = new PostgresQuery(rc);

Migrating from 1.x

2.0 is a clean break — mechanical to adopt:

  • Dialect entry classes were renamed to *Query: PostgresSqlEasyPostgresQuery, MssqlSqlEasyMssqlQuery, MysqlSqlEasyMysqlQuery, SqliteSqlEasySqliteQuery. Update your imports and new PostgresSqlEasy()new PostgresQuery(). Every builder and multi-builder method is otherwise identical.
  • The I* interfaces were removed (ISqlEasy, IBuilder, IJoinOnBuilder, IMultiBuilder). Import the concrete types instead — QueryBuilder, MultiBuilder, JoinOnBuilder.
  • MSSQL correctness fix: aliased DELETE/UPDATE now emit valid T-SQL (DELETE [u] FROM [dbo].[users] AS [u] …, UPDATE [u] SET … FROM [dbo].[users] AS [u] …), where 1.x produced invalid syntax.
  • Unchanged: dual ESM + CJS builds, JSR publishing, the multi_builder, the Datatype enum, and all four dialects.

License

MIT © DeeBee Tech