Socket
Socket
Sign inDemoInstall

ormless

Package Overview
Dependencies
79
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ormless

Type safe SQL shortcuts based on kysely


Version published
Weekly downloads
54
increased by100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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

FAQs

Last updated on 04 Oct 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc