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

ts-pg-model

v2.0.2

Published

Generates Typescript type definitions from live Postgres server.

Downloads

14

Readme

ts-pg-model

Generates Typescript type definitions from live Postgres server.

Configuration

Postgres connection

You can assign connectionURI in configuration or use PG_CONNECTION_URI environment variable. URI value must follow valid Postgres URI scheme starting with postgresql:// or postgres://.

dotenv is also supported. You can also set .env file location with dotEnvPath in configuration.

Output paths

{
  output: {
    root?: string;
    includeSchemaPath?: boolean;
    keepFiles?: string[];
  }
}

Root path

output.root

Defaults to ./src/generated.

tsconfig.json path

tsConfig

Defaults to ./tsconfig.json

Schema paths

If there are multiple schemas targeted for file generation, each resources within a schema will be always grouped within a directory named after the schema. If only single schema is targeted (e.g. public) directory structure will not be used unless output.includeSchemaPath is set to true.

Keeping files from being removed

Files will only be overwritten if there are structural changes (@generated date will not be updated) and will be deleted if no longer needed. If any files should be kept from being removed inside the root folder, add file paths (relative to output.root) to output.keepFiles.

Naming convensions

export type ChangeCase =
  | 'camelCase'
  | 'capitalCase'
  | 'constantCase'
  | 'dotCase'
  | 'kebabCase'
  | 'noCase'
  | 'pascalCase'
  | 'pathCase'
  | 'sentenceCase'
  | 'snakeCase'
  | 'trainCase'
  | 'keep';

const config: UserConfig = {
  conventions: {
    schemas: 'camelCase',
    columns: 'keep',
    types: 'camelCase',
    paths: 'kebabCase',
  },
};

Code convensions

You can choose code convensions of schemas, columns and types. Choices are open to all methods provided by change-case or keep (no transform).

Schema names

Schema code convensions are applied to namespaces. Defaults to camelCase.

Column names

Column code conventions are applied to column names. Defaults to keep. Can be useful if you prefer automatic column name transformation to camelCase, etc.

Enum Types

Enum type code conventions are applied to Enum member names. Defaults to camelCase.

Paths and filename conventions

Generated file paths and filename conventions. Defaults to kebabCase.

Selecting targets

You can target schemas, tables and columns using target selectors.

schema

If undefined, default schemas will be chosen by the result of show search_path query, excluding "$user". In most of user cases, the result would be ["public"].

tables & columns

Tables and columns can be explicitly included or excluded using targetSelectors configuration. targetSelectors is a series of filters which includes or excludes targets in order.

You can define table / columns names with dot notation, including schema / table names.

If schema / tables names are not defined using dot notation, all matching targets will be included / excluded.

Type mapping

User defined types (UDT)

Most of known Postgres types should be mapped automatically. If there is an unknown data type that needs casting into a primitive type, use typeMap.udt settings. Array type (e.g. _text, with underscore prefix in udt_name) should be automatically handled.

JSON(B) definitions

User defined JSON(B) types can be achived via typeMap.json settings & type definitions in the settings file. When typeMap.json is defined, this will require JSON type definitions as UserConfig arguments (UserConfig<JsonTypeMap>).

Example

export interface JsonTypeMap {
  MediaMetadata: {
    width: number;
    height: number;
  };
}

// `UserConfig` variable has to be either exported via named export (with name `userConfig`) or default export
export const userConfig: Config<JsonTypeMap> = {
  // includes `users` schema only.
  schemas: ['users'],
  targetSelectors: [
    {
      include: {
        // includes `media.images` table, despite `media` schema was not included.
        tables: ['media.images'],
      },
    },
    {
      exclude: {
        // excludes all tables with name `sessions`, in this case `users.sessions` table.
        tables: ['sessions'],
        // excludes `created_at`, `updated_at` columns in all tables
        columns: ['created_at', 'updated_at'],
      },
    },
    {
      include: {
        // include `users.sessions` again.
        // be noted that all columns including `created_at` column in this table will be included
        // despite all columns with name `created_at` was removed in previous exclude rule.
        tables: ['sessions'],
        // includes `media.images.updated_at` column, despite all `updated_at` columns were excluded.
        columns: ['media.images.updated_at'],
      },
    },
  ],
  typeMap: {
    json: [
      {
        schema: 'media',
        tableName: 'images',
        columnName: 'metadata',
        name: 'MediaMetadata',
      },
    ],
  },
  conventions: {
    columns: 'camelCase',
  },
};

Type definition output

Single Schema Mode

Multi Schema Mode