Skip to content

Latest commit

 

History

History
104 lines (71 loc) · 2.1 KB

File metadata and controls

104 lines (71 loc) · 2.1 KB
  • Make a TODO form

    • Fields
      1. Task
      2. Priority (low-high)
      3. Due date(boolean)
        1. Due date
        2. Completed (default = false)
      4. Notes(description)
    • Buttons
      1. Add
      2. Clear
      3. Delete
      4. Edit
      5. Save
      6. Cancel
  • Server

    • GET /todos
      • Returns all todos
    • POST /todos
      • Creates a new todo
    • PUT /todos/:id
      • Updates a todo
    • DELETE /todos/:id
      • Deletes a todo
  • Separate page to just view TODOs

    • GET /todos
      • Returns all todos
    • PUT /todos/:id
      • Updates a todo
    • DELETE /todos/:id
      • Deletes a todo

TODO:

  • Learn how to use Postman to test API endpoints

  • Learn how to use ExpressJS to create a server

  • Learn how to use NodeJS to run a server

  • Learn how to use MongoDB to store data


Files:


Resources:


Fonts:


Icons:


YouTube References