We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The main entry point is index.js this just sets up the app and environment and starts the koa server.
The server.js is where most of the koa.js set up lies.
The middleware is effectively loaded backwards, so the first middleware will run last. The order at time of writing is
koa-router is used to create routes for urls/endpoints.
Each CRUD endpoint must have GET (Many), GET (Single), POST, PUT and DELETE methods implemented and tested.