Is there still DAL or DAL / ORM for Node.js?

I want to experiment a bit with Heroku and Node.js. Heroku uses Postgres by default, but I would like to use Amazon RDS later (MySQL). Is there a good level of database abstraction, preferably with a simple object-relational mapping around it at the moment? I checked the NPM repository but couldn't find what supported both, looked mature and well documented.

+3
source share
1 answer

You may be interested in using a different hosting provider. For example, Duostack is very easy to configure and allows you to use mysql: http://docs.duostack.com/node/databases#mysql

ORM MySQL , , sequelize (http://sequelizejs.com https://github.com/sdepold/sequelize).

+2

All Articles