DEV Community

Discussion on: Which is the Best Database for NodeJS?

Collapse
 
shubho profile image
Shubhojyoti

The database you choose will depends on your project needs. If I need strict relations in my data I do not use MongoDB. In such cases, SQLite usually serves my purpose for POCs and in prod I like PostgresSQL. I love using Sequelize ORM docs.sequelizejs.com/ which supports MySQL/PostgreSQL/SQLite. For apps that involves file storage I use MongoDB.

Collapse
 
dechamp profile image
DeChamp

+1 for sequelize

Collapse
 
schaan profile image
Schaan Alq.

+1 for Sequelize!