Skip to content

noreng/koa-CRUD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

koa-CRUD

CURL commands to test

Create

curl --data '{"name": "New Item"}' http://localhost:8000/api/create -H 'content-type:application/json'

Read

curl -H 'content-type:application/json' http://localhost:8000/api/read

Update

curl -X 'PUT' --data '{"name": "Updated item"}' http://localhost:8000/api/update/1 -H 'content-type:application/json' 

Delete

curl  -X 'DELETE' http://localhost:8000/api/delete/2 -H 'content-type:application/json'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published