Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hchiam/learning-sequelize
- Owner: hchiam
- Created: 2020-07-14T00:28:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-13T16:58:38.000Z (about 4 years ago)
- Last Synced: 2024-12-01T02:08:34.790Z (2 months ago)
- Topics: database, db, node, nodejs, orm, promises, sequelize, sql
- Language: JavaScript
- Homepage:
- Size: 39.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 sqlite3node example.js
```## Run this repo
```bash
npm install # or: yarn
node example.js
```