This is the simple CRUD todo application.
This project is the proof of work for implementing the basic Koa framework features using functional programming.
- Koa framework
- Knex as the query builder
- Jest for testing
- Supertest for api integration testing
Run the application. The application will be run on port 4000 by default if process.env.PORT
is undefined.
Test the application using Jest
and Supertest
Create new migration with the specified name. The migration is used to modified the database schema.
Apply the latest migration to update the database schema.
Undo the latest migration to reverse the database schema changes.