postgresql-typed VS sequelts

Compare postgresql-typed vs sequelts and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
postgresql-typed sequelts
2 3
83 28
- -
4.9 0.0
about 2 months ago over 1 year ago
Haskell TypeScript
BSD 3-clause "New" or "Revised" License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

postgresql-typed

Posts with mentions or reviews of postgresql-typed. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-24.

sequelts

Posts with mentions or reviews of sequelts. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-24.
  • Kysely: TypeScript SQL Query Builder
    19 projects | news.ycombinator.com | 24 Jan 2023
    You can use these template literal types + infer to build an entire SQL parser. I did a POC that infers SQL query types by parsing the SQL query on a type level:

    https://github.com/nikeee/sequelts

    However, building this parser is pretty cumbersome and supporting multiple SQL dialects would be lots of pain. While I'm not a fan of query builders per se, Kysely pretty much covers everything that my POC tried to cover (except that 0 runtime overhead). However, you get the option to use different DBMs in tests than in production (pg in prod, sqlite in tests), which is a huge benefit for a lot of people. sequelts was designed to work with sqlite only. And it's not a hack.

  • Flyweight: An ORM for SQLite
    9 projects | news.ycombinator.com | 29 Sep 2022
    The only thing I can imagine where this would be useful is when you don't have control about what DB is being used, for example, when building a product that should be compatible with Postgres and MariaDB (and each is getting used). However, in the age of containerization, this isn't a big problem any more.

    In some ORMs, I need to create types that the result of a query containing JOINs is mapped to. Others don't support them _at all_. In TypeORM, there is a query builder which forces you to put in _some_ SQL for things like "WHERE a in (b, c)".

    I created a proof of concept of a different approach: Just embrace SQL and provide static typing based on the query. The return type of a query is whatever that thing is that the query returns in the context of the database schema. It's possible to do in TypeScript, by parsing the SQL query at development time:

    https://github.com/nikeee/sequelts

    One benefit is that it does not need any runtime code, as it's just a type layer over SQL. You don't have to rely on some type-metadata that TypeScript emits. That's why it also works with JavaScript only.

  • Deepkit – High-Performance TypeScript Framework
    13 projects | news.ycombinator.com | 7 Jun 2022
    I don't like ORMs that use runtime types either. Most of the time, I want to write raw SQL.

    So as an experiment, I created a library that statically types raw SQL:

    https://github.com/nikeee/sequelts

    The idea is to parse the SQL queries using TS's type system. The parsed query is combined with the database schema and therefore, we know what type the query will return.

    This is especially useful due to TS's structural type system.

What are some alternatives?

When comparing postgresql-typed and sequelts you can also consider the following projects:

postgresql-transactional - Transactional monadic actions on top of PostgreSQL.

liveviewjs - LiveView-based library for reactive app development in NodeJS and Deno

postgresql-tx - [Moved to: https://github.com/Simspace/postgresql-tx]

flyweight - An ORM for SQLite

postgresql-simple-opts - An optparse-applicative parser for postgresql-simple's connection options

kysely-codegen - Generate Kysely type definitions from your database.

postgresql-simple-named - :question: Implementation of named parameters for `postgresql-simple` library

ts-sql - A SQL database implemented purely in TypeScript type annotations.

cassandra-cql - Haskell client for Cassandra's CQL protocol

assert-combinators - Functional assertion combinators.

postgresql-syntax - PostgreSQL SQL syntax utilities

Npgsql.FSharp.Analyzer - F# analyzer that provides embedded SQL syntax analysis, type-checking for parameters and result sets and nullable column detection when writing queries using Npgsql.FSharp.