Can anyone suggest a good library for PostgreSQL similar to Mongoose?
I am learning PostgreSQL with Express. Can anyone suggest a good library for PostgreSQL similar to Mongoose?
2 Replies
there are different flavors to handle postgres on nodejs
you have some more raw options, such as https://node-postgres.com/ and https://github.com/porsager/postgres
then you can use query builders such as https://orm.drizzle.team/ and https://github.com/kysely-org/kysely
and for the full orm experience, you have prisma https://www.prisma.io/ https://typeorm.io/ and https://mikro-orm.io/
thanks