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 🙏

© 2025 – Pkg Stats / Ryan Hefner

belongsql

v0.0.0

Published

Answer "belongs to" questions about relation data

Readme

BelongSQL

Answer "belongs to" questions about your relational database.

About

Note, this project is in active development, with an unstable API and limited DB support (only postgres).

While this project is obviated by ORMs, most ORMs I found were:

  • heavy weight - tons of dependencies, large API to learn
  • did not provide auto-schema-reading - i.e. I have to write a ton of views / configurations to do a simple task

I am using this as a stop-gap until my project grows to need an ORM, or I find a lightweight ORM satisfying current needs.

Motivation

A common design pattern in relational databases is to create a hierarchy (directed graph) of objects. In many applications, it is common to ask if a child object in this hierarchy belongs to parent object. BelongSQL makes answering these types of questions simple.

Example

A freelancer billing app's database may represent a belonging to an belonging to a belonging to a . Take the case that permissions to edit a are assigned at the level (so that a may modify only their own s). If we are implementing an API endpoint for editing invoices, say /edit/lineitem/:id, with cookie or body data identifying a contractor_id, we would need to validate that the at :id belongs to the at contractor_id. To do so in raw SQL, we might write a query like:

SELECT
  COUNT(1)
FROM contractor
JOIN task
  ON task.contractor_id = contractor.id
JOIN invoice
  ON invoice.task_id = task.id
JOIN lineitem
  ON lineitem.invoice_id = invoice.id
WHERE
  contractor.id = 'x'
  AND lineitem.id = 'y'

Compare to BelongSQL:

const graph = SchemaGraph.fromDB(connection);
graph.belongsTo('lineItem', 'x', 'contractor', 'y');

Notably, SchemaGraph requires 0 configuration.