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

https://github.com/itgoyo/code_with_cj_curd

Please watch this to details: https://www.youtube.com/watch?v=fBNz5xF-Kx4
https://github.com/itgoyo/code_with_cj_curd

Last synced: 3 months ago
JSON representation

Please watch this to details: https://www.youtube.com/watch?v=fBNz5xF-Kx4

Awesome Lists containing this project

README

        

# Build a Full Stack App: CRUD todo

We'll be using:
* postgres for our database
* knex.js for our database migrations, seeds and queries.
* express.js for our routes and rendering
* handlebars.js for our server side view templates
* boostrap for our UI

## Full Stack Check List
* [x] Generate Express App
* [x] Create database/table
* [x] Seed table with sample data
* [x] List all records with GET /todo
* [x] Add Bootstrap
* [x] Show new form with /todo/new
* [x] Create a record with POST /todo
* [x] Show one record with GET /todo/:id
* [x] Show an edit form with GET /todo/:id/edit
* [x] Update a record with PUT /todo/:id
* [x] Delete a record with DELETE /todo/:id
* [x] Redirect on create / update / delete