Compare commits

...

5 Commits

Author SHA1 Message Date
Akash Kava 220382bb9f
Merge 025e621384 into 8b74d50fd8 2024-04-13 23:03:14 -07:00
Nivek Huang 8b74d50fd8
Add zod (#1271) 2024-04-11 14:05:06 +09:00
Gao Sun 452991fe63
Meta tweaks (#1270) 2024-04-10 12:36:45 +09:00
Sindre Sorhus 1599ab9871 Meta tweaks 2024-04-09 23:20:55 +09:00
Akash Kava 025e621384
Added Entity Access ORM 2023-09-29 20:17:42 +05:30
1 changed files with 18 additions and 0 deletions

View File

@ -75,6 +75,22 @@
<br>
<br>
<br>
<a href="https://logto.io/?ref=sindre">
<div>
<picture>
<source width="200" media="(prefers-color-scheme: dark)" srcset="https://sindresorhus.com/assets/thanks/logto-logo-dark.svg?x">
<source width="200" media="(prefers-color-scheme: light)" srcset="https://sindresorhus.com/assets/thanks/logto-logo-light.svg?x">
<img width="200" src="https://sindresorhus.com/assets/thanks/logto-logo-light.svg?x" alt="Logto logo">
</picture>
</div>
<b>The better identity infrastructure for developers</b>
<div>
<sup>Logto is an open-source Auth0 alternative designed for every app.</sup>
</div>
</a>
<br>
<br>
<br>
</p>
<hr>
<br>
@ -540,6 +556,7 @@
- [ajv](https://github.com/ajv-validator/ajv) - The fastest JSON Schema validator. Supports v5, v6 and v7 proposals.
- [Superstruct](https://github.com/ianstormtaylor/superstruct) - Simple and composable way to validate data in JavaScript (and TypeScript).
- [yup](https://github.com/jquense/yup) - Object schema validation.
- [zod](https://github.com/colinhacks/zod) - TypeScript-first schema validation with static type inference.
### Parsing
@ -615,6 +632,7 @@
- [TypeORM](https://github.com/typeorm/typeorm) - ORM for PostgreSQL, MariaDB, MySQL, SQLite, and more.
- [MikroORM](https://github.com/mikro-orm/mikro-orm) - TypeScript ORM based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, PostgreSQL, MySQL and SQLite.
- [Prisma](https://github.com/prisma/prisma) - Modern database access (ORM alternative). Auto-generated and type-safe query builder in TypeScript. Supports PostgreSQL, MySQL & SQLite.
- [Entity Access](https://github.com/Entity-Access/entity-access/actions) - Inspired from Entity Framework Core, Entity Access is ORM with Arrow Function to SQL Translator helps you write small readable queries.
- Query builder
- [Knex](https://github.com/knex/knex) - Query builder for PostgreSQL, MySQL and SQLite3, designed to be flexible, portable, and fun to use.
- Other