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

@easysql/schema-generation

v2.2.0

Published

Normalize introspected database metadata into the EasySQL schema payload the API consumes. Pure, deterministic, no I/O.

Downloads

156

Readme

@easysql/schema-generation

Normalize the raw metadata a database connector introspects into the schema payload the EasySQL API consumes.

Pure and deterministic: this package performs no network, filesystem or database access. It takes the single input shape connectors produce and returns the TableSchema[] accepted by POST /v1/connectors and POST /v1/connectors/:id/sync.

Install

npm install @easysql/schema-generation
# or
bun add @easysql/schema-generation

Usage

import { generateSchema, type RawSchema } from "@easysql/schema-generation";

const raw: RawSchema = {
  engine: "mysql",
  tables: [
    {
      name: "users",
      rowsApprox: 42,
      columns: [
        { name: "id", dataType: "int", nullable: false, primaryKey: true, ordinal: 1 },
        { name: "email", dataType: "varchar(255)", nullable: false, ordinal: 2 },
        {
          name: "role_id",
          dataType: "int",
          nullable: true,
          ordinal: 3,
          foreignKey: { table: "roles", column: "id" },
        },
      ],
    },
  ],
};

const schema = generateSchema(raw);
// [{ name: "users", rows_approx: 42, columns: [
//   { name: "id",    type: "integer", nullable: false, primary_key: true,  default: null, foreign_key: null },
//   { name: "email", type: "string",  nullable: false, primary_key: false, default: null, foreign_key: null },
//   { name: "role_id", type: "integer", nullable: true, primary_key: false, default: null,
//     foreign_key: { table: "roles", column: "id" } },
// ] }]

Input contract

Connectors report one RawSchema per introspected database:

| Type | Field | Notes | |---|---|---| | RawSchema | engine | "mysql" \| "mariadb" \| "sqlite" | | RawSchema | tables | RawTable[] | | RawTable | name, columns, rowsApprox? | | | RawColumn | name, dataType, nullable | dataType is the engine-native declared type | | RawColumn | defaultValue?, primaryKey?, foreignKey? | | | RawColumn | ordinal? | Declared position; keeps column order stable |

Output and determinism

  • Tables are sorted by name and columns keep their declared order (or name order when the connector does not report an ordinal) — the same database always produces an identical payload, independent of the host locale.
  • Engine types are mapped into a closed vocabulary (SchemaType): integer, bigint, smallint, decimal, float, boolean, string, text, binary, blob, date, time, datetime, timestamp, json, enum, uuid, unknown. Unmapped types fall back to unknown so downstream consumers never depend on engine-specific spellings.
  • MySQL/MariaDB types are mapped by name (tinyint(1) → boolean).
  • SQLite declared types are resolved by affinity first, then refined by named types (BOOLEAN, DATETIME, DATE, JSON, UUID).

License

MIT — maintained by Clearsoft.