Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which NodeJS Frameworks support relational databases? [closed]

I'm starting server-side development with NodeJS, I have found lots of promising frameworks, but can't tell which of them support relational databases (Namely Postgres).

Any ideas? Server-side MVC frameworks are preferred.

like image 220
mjalajel Avatar asked Feb 17 '23 20:02

mjalajel


2 Answers

Express is universal framework ( and really popular one ), you can use it with any database you want. You just need a database driver. You can use one of these:

https://github.com/brianc/node-postgres ( low level )

https://github.com/grncdr/node-any-db

https://github.com/brianc/node-sql

There are probably many many more, just google it.

like image 126
freakish Avatar answered Mar 05 '23 18:03

freakish


check out the modules list here

there are many db modules for mysql/SQLite/PostgreSQL etc...

like image 20
Yaron U. Avatar answered Mar 05 '23 18:03

Yaron U.