From d37d6541e4a5f9f892a309ca448bd621d29f510b Mon Sep 17 00:00:00 2001 From: Daniel <59575049+lemoentjiez@users.noreply.github.com> Date: Thu, 2 Feb 2023 00:54:24 +0200 Subject: [PATCH] Created First README --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ed0935a --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# task-manager-js + +Tiny To-Do-List-type task manager created using basic HTML/CSS/JS on the front side, and Node.js, paired with Express.js and MongoDB on the backend. + +#### It does the following API calls: + +Method | URL | Function +--- | --- | --- +| `GET:` | `/api/v1/tasks` | Retrieves a list of all tasks from the server +| `GET:` | `/api/v1/tasks/:ID` | Retrieves a specific task from the server +| `POST:` | `/api/v1/tasks` | Creates a new task +| `PATCH:` | `/api/v1/tasks/:ID` | Updates a specific task on the server +| `DELETE:` | `/api/v1/tasks/:ID` | Deleted a specific task