- Create a fully functional CRUD API using knex query builder
npm i --save knex pg
touch knexfile.js
mkdir db
mkdir db/seeds
mkdir db/migrations
// create db in postico
// update conn string in knexfile.js
// create migration files
// create seed files
knex migrate:latest && knex seed:run
https://devhints.io/knex https://express-validator.github.io/docs/