Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 259 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 259 Bytes

sample knex/bookshelf quickstart

mkdir sample-knex-bookshelf
cd sample-knex-bookshelf
npm init -y
npm install sqlite3 knex bookshelf
sudo npm -g install knex
knex migrate:make initial_scheme
knex migrate:make initial_data
touch index.js
code .