@astrocoders/postgres-orm
v1.0.7
Published
PostgreSQL ORM
Downloads
32
Keywords
Readme
@Astrocoders/postgres-orm ⚡️🔨
Installation
yarn add @astrocoders/postgres-orm postgres
or npm install @astrocoders/postgres-orm postgres
Usage
import PostgreSQLORM from '@Astrocoders/postgres-orm'
import * as pg from 'postgres'
export const pool = new pg.Pool(config)
export const connect = () => pool.connect().then(() => console.log('Connection successful'))
const orm = createORM({ entityMapperClass, tableName, debug, client: pool, })