I have looked at Google Cloud SQL and Amazon RDS, however, are there any services like this (or these) that have an npm module to write a CRUD application with a MySQL, Node, Express backend? All of the npm modules seem to be for NoSQL databases
Asked
Active
Viewed 116 times
1 Answers
0
Google Cloud SQL and Amazon RDS are just MySQL (https://www.npmjs.org/package/mysql) or Postgres (https://www.npmjs.org/package/pg) under the hood. You don't need NPM packages specific to RDS or Cloud SQL.

ceejayoz
- 176,543
- 40
- 303
- 368
-
so then would I just connect to the sql server via the domain name, username, and password? – Jeremy Sep 17 '14 at 21:14