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

sqmap

v0.3.2

Published

A lightweight and easy to use micro ORM for Node/TypeScript.

Downloads

341

Readme

SQMap

A lightweight and easy to use micro ORM for Node/TypeScript.

SQMap doesn't aim to replace SQL with TS, but instead it encourages you to combine the two languages to leverage their advantages. Our aim is to provide a thin and fast wrapper over the most commonly used SQL queries in order to improve the developer experience. SQMap can't generate complex SQL queries and doesn't aim to do that in the future.

Supported databases

Currently SQMap only supports Postgres using the pg package.

Models

In order to fully use the features offered by SQMap you'll need to define a model for each table that you want to query. The example below shows how you can use TS to define the valid columns and the row types while also using SQL to create the table.

import { genPostgresAPI } from "sqmap";

export interface Row {
  id?:       number;
  created?:  Date;
  status?:   "active" | "banned";
  name?:     string;
  username?: string;
  email?:    string;
  info?:     Info;
}

export interface Info {
  subscription_plan: "basic" | "premium";
}

export const queries = {
  up: /*sql*/ `CREATE TABLE IF NOT EXISTS "users" (
    "id"       INT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
    "created"  TIMESTAMP DEFAULT NOW(),
    "status"   TEXT,
    "name"     TEXT,
    "username" TEXT,
    "email"    TEXT UNIQUE,
    "info"     JSONB
  );`,
  indexStatus: /*sql*/ `CREATE INDEX users_status_index ON "users" USING HASH ("status");`,
  down: /*sql*/ `DROP TABLE "users";`
};

// In order to get the proper type-checking you need to pass Row as type parameter. The columns are
// going to be infered from the Row interface
export const db = genPostgresAPI<Row>("users");

Migrations

import { PoolClient } from "pg";
import * as SQM from "sqmap";
// You'll need a pool connection. More info: https://node-postgres.com/apis/pool
import * as postgres from "./postgres.js";
// Models
import * as User from "./models/User.js";

// The migration system works by iterating through this array on server
// startup, executing any unapplied migrations. The server tracks the
// completed migrations by creating a new entry in the "sqmap_migrations" table.
const MIGRATIONS = [{
    name: "create_table_users",
    exec: async (client: PoolClient) => {
      // All queries are done in a transaction so if any fails then the migration
      // will be reverted
      await client.query(User.queries.up, []);
      await client.query(User.queries.indexStatus, []);
    }
  }
];

// You'll need to run this funtion at server startup
export const run = async (): Promise<void> => {
  const client = await postgres.pool.connect();
  try {
    await SQM.runPostgresMigrations(client, {
      table: "sqmap_migrations",
      initialMigrationName: "init_db"
    }, MIGRATIONS);
  } catch (error) {
    console.log(error);
    process.exit(1);
  } finally {
    client.release();
  }
};

Insert queries

import * as User from "./models/User";

const newUser = await User.db.insert(client, {
  // You need to specify all the columns that you want to insert into
  cols: ["status", "username", "email", "info"],
  // Any extra column that is not present in the "cols" array will be ignored
  // Missing columns will be inserted as undefined
  rows: [{
    status: "active",
    name: "new user",
    email: "[email protected]",
    info: {
      subscription_plan: "basic"
    }
  }],
  return: ["id"]
});

// newUser will be of type pg.Result: https://node-postgres.com/apis/result
// The rows property will be of Array<User.Row>
console.log(newUser[0].id);

The code above will generate the following query:

INSERT INTO "users" ("status", "username", "email", "info") VALUES ($1, $2, $3, $4) RETURNING "id";

^ Notice how name was ignored even tho the passed object contains it. and will pass as params:

["active", undefined, "[email protected]", { subscription_plan: "basic" }]

^ Notice how because we specified that we want to insert the username column and we didn't set it on the passed object it was inserted as undefined.

Select queries

Update queries

Delete queries

Debug options & utils

Performance