ormless
TypeScript icon, indicating that this package has built-in type declarations

0.0.9 • Public • Published

Ormless

Ormless is inspired by Prisma2 and is built on a Typesafe SQL query builder called Kysely that aims to add useful shortcut functions with no fuss and no surprises, fully and automatically typed.

Features:

  • A command-line tool introspect SQL database and generate the data schema for tables, views, constraints and enums
  • Simple and fun way to select, insert, update and delete objects using the full power of SQL and Typescript

Installation

Ormless currently only works on postgres.

MySQL and sqlite support will be added once Kysely support them. Kysely also has a simple interface for third-party dialects.

if you only need both interfaces and shortcut functions.

npm install ormless@latest

if you only need interfaces only.

npx ormless@latest

** This library is still work in progress and so does Kysely.

Example

ormless.config.json

{
  "database": {
    "public": {
      "actor": {},
      "address": {},
      "category": {},
      "city": {},
      "country": {},
      "customer": {},
      "film": {},
      "film_actor": {},
      "film_category": {},
      "inventory": {},
      "language": {},
      "payment": {},
      "rental": {},
      "staff": {},
      "store": {}
    }
  },
  "paths": ["public"],
  "connection": {
    "database": "ormless",
    "host": "localhost",
    "user": "michael",
    "dialect": "postgres"
  },
  "generate": {
    "database": {
      "repository": true,
      "folder": "example"
    }
  }
}

Introspect Result

Usage

Build-in Shortcuts

  • selectOne
  • selectMany
  • createOne
  • createMany
  • updateOne
  • updateMany
  • deleteOne
  • deleteMany

/ormless/

    Package Sidebar

    Install

    npm i ormless

    Weekly Downloads

    164

    Version

    0.0.9

    License

    ISC

    Unpacked Size

    118 kB

    Total Files

    74

    Last publish

    Collaborators

    • michael-li