Skip to content

ebiwari/task-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Step 1- run npm install

Query Task

localhost:${port}/tasks: Retrieve all tasks.
localhost:${port}/tasks/:id: Retrieve a single task by its ID.

Add Task

make post request localhost:${port}/tasks: Create a new task.
json parameter is needed with data value below

{ title:your title description:your description }

Update Task

make put request localhost:${port}/tasks/:id: Update an existing task by its ID.

json parameter is needed with data value below

{ title:your title(optional) description:your description(optional) }

Delete task

make a delete request localhost:${port}/tasks/:id: Delete a task by its ID.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published