/realworld-sequelize

A real world nodeJs project

Primary LanguageJavaScript

realworld-sequelize

NodeJS + SQL Real World Project

This is an implementation of Thinkster's realworld.io API using:

  • Language : Javascript
  • Platform : NodeJS
  • Framework : ExpressJS
  • Database : MySQL/SQLite/Postgres
  • ORM : Sequelize

Setup Database

mysql -u root
 create database realworlddb;
 create user realworlduser with password 'realworldpass';
 grant all privileges on realworlddb.* to realworlduser;
 flush privileges;