Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 1.04 KB

README.md

File metadata and controls

21 lines (15 loc) · 1.04 KB

Backend Developer Exam

Create a TODO API consist of title and is finished. The other functionalities of the application are the following:

  • Can create todo
  • Can update specific todo
  • Can fetch todo
  • Can fetch all todos
  • Can delete a specific todo

Instructions:

Consume this resource endpoint, https://jsonplaceholder.typicode.com/todos and save the data on the todos table. Please refer to the documentation of jsonplaceholder.

Also create a login page for the users in able to access the page. Adding roles of the user is a big plus but not required.

Submit your answer by making a pull request and answer these questions in the pull request details.

  1. Please elaborate the tech stacks used in this activity and why did you chose it?
  2. Did you used any software design patterns, paradigms or best practices for developing this application? If yes, why did you used it?
  3. If you have an extra time, what features do you want to add?