Please read this whole README before starting.
Welcome to the code test!
This test is meant to help us get an understanding of your technical knowledge and how you tackle problems. The way you go about finding your solutions and implementing them is just as important to us as the final product. This test should take you about 2 to 4 hours.
When you’re finished with the test, please email us to schedule a code review! We’ll ask for a demo of what you have working as well as have a conversation about how you made what you made.
Create an application to create, view, update, and destroy ‘todo’ items. The application should be a single page application based in a popular framework (React, Vue, Svelte, or similar) with a backend based which interacts with a SQL or NoSQL style database.
- Fork this repository into a public repository on your account
- Commit early and often. We'll likely be following along with your progress.
- A link to your repository with code in it.
- A text description of the todo
- A checkbox to mark the todo as done or undone
- The user should be able to create a new TODO item
- The user should be able to destroy a TODO item
- The user should be able to update the text description of a TODO item
- TODOs should be Created, Updated, Listed, Viewed, and Destroyed via REST or graphQL
- TODOs should be stored in your database on the backend.
If you find that you have completed the earlier items with time to spare, please consider adding the following
- Deploy your TODO app to the internet so we can see it in action
- Test it on Mobile device sizes.
- Write unit tests for your code.
- Edit this ReadMe with new suggestions for how to improve this code test