Skip to content

Commit

Permalink
Merge pull request nestjs#2303 from peter-gy/patch-1
Browse files Browse the repository at this point in the history
docs: update Prisma docs with supported databases
  • Loading branch information
kamilmysliwiec authored May 13, 2022
2 parents 544acf0 + 08fd8fb commit 8e7ec05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/recipes/prisma.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Prisma

[Prisma](https://www.prisma.io) is an [open-source](https://github.com/prisma/prisma) ORM for Node.js and TypeScript. It is used as an **alternative** to writing plain SQL, or using another database access tool such as SQL query builders (like [knex.js](https://knexjs.org/)) or ORMs (like [TypeORM](https://typeorm.io/) and [Sequelize](https://sequelize.org/)). Prisma currently supports PostgreSQL, MySQL, SQL Server, SQLite and MongoDB (preview).
[Prisma](https://www.prisma.io) is an [open-source](https://github.com/prisma/prisma) ORM for Node.js and TypeScript. It is used as an **alternative** to writing plain SQL, or using another database access tool such as SQL query builders (like [knex.js](https://knexjs.org/)) or ORMs (like [TypeORM](https://typeorm.io/) and [Sequelize](https://sequelize.org/)). Prisma currently supports PostgreSQL, MySQL, SQL Server, SQLite, MongoDB and CockroachDB (Preview).

While Prisma can be used with plain JavaScript, it embraces TypeScript and provides a level to type-safety that goes beyond the guarantees other ORMs in the TypeScript ecosystem. You can find an in-depth comparison of the type-safety guarantees of Prisma and TypeORM [here](https://www.prisma.io/docs/concepts/more/comparisons/prisma-and-typeorm#type-safety).

Expand Down

0 comments on commit 8e7ec05

Please sign in to comment.