postgres-schema-ts
TypeScript icon, indicating that this package has built-in type declarations

0.5.0 • Public • Published

postgres-schema-ts

Convert Postgres schemas into TypeScript interfaces

MySQL implementation: http://github.com/nettofarah/mysql-schema-ts

Usage

# to infer an entire schema
$ npx postgres-schema-ts postgresql://postgres@localhost:5433/db?currentSchema=public

# to infer a specific table
$ npx postgres-schema-ts postgresql://postgres@localhost:5433/db?currentSchema=public table_name

tip: You can pipe the output of postgres-schema-ts into a file with npx postgres-schema-ts <args> > schema.ts

Demo

For the following SQL schema:

CREATE TABLE account (
  username VARCHAR (50) UNIQUE NOT NULL,
  password VARCHAR (50) NOT NULL,
  email VARCHAR (355) UNIQUE NOT NULL,
  created_on TIMESTAMP NOT NULL,
  last_login TIMESTAMP
)

run:

$ npx postgres-schema-ts postgresql://postgres@localhost:5433/db?currentSchema=public
export interface account {
  username: string
  password: string
  email: string
  created_on: Date
  last_login: Date | null
}

Using postgres-schema-ts programatically

import { inferSchema, inferTable } from 'postgres-schema-ts'

await inferSchema(connectionString)
await inferTable(connectionString, tableName)

Design

postgres-schema-ts is inpired by the awesome schemats library. But takes a simpler, more blunt, and configuration free approach:

  • Simpler defaults
  • Postgres support only
  • Inline enums
  • No support for namespaces

License (MIT)

WWWWWW||WWWWWW
 W W W||W W W
      ||
    ( OO )__________
     /  |           \
    /o o|    MIT     \
    \___/||_||__||_|| *
         || ||  || ||
        _||_|| _||_||
       (__|__|(__|__|

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

Package Sidebar

Install

npm i postgres-schema-ts

Weekly Downloads

1,971

Version

0.5.0

License

MIT

Unpacked Size

169 kB

Total Files

31

Last publish

Collaborators

  • nettofarah