- clone this repository
npm install
oryarn install
this foldernpm start
oryarn start
to start the dev serveropen http://localhost:4517
to see what the default route renders
If you're using VSCode open the workspace.
To use JS instead of TypeScript rename src/index.ts to index.js
You will have to restart server after making changes to see them appear.
Create an API for a Todo list. This challenge is open book. You may search web and use any libraries you like.
- User can view todo list
- User can add an item to todo list
- User can mark an item as done
- Persistence choice (while optimizing for the shortness of the interview)
- Routes, status codes, and HTTP verbs
- Impact of choices on UI
- Types/Contracts