Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hchiam/learning-sequelize

Learning Sequelize ORM
https://github.com/hchiam/learning-sequelize

database db node nodejs orm promises sequelize sql

Last synced: 13 days ago
JSON representation

Learning Sequelize ORM

Awesome Lists containing this project

README

        

# Learning Sequelize ORM

and

## Setup from scratch

```bash
npm init
npm install sequelize # or: yarn add sequelize

# and your choice of DB driver, for example, sqlite3:
npm install sqlite3 # or: yarn add sqlite3

node example.js
```

## Run this repo

```bash
npm install # or: yarn
node example.js
```