REST demo with koa.
This is a simple demo of RESTful API with koajs and is a forked but modernized version of the one
here. This was intended to be a modern MERN stack application - with modern
node syntax by substituting express
for koa
.
How to try it?
$ git clone https://github.com/george-wilson-al/koa-rest.git
$ cd koa-rest
$ mongoimport -d dummy -c todos ./db.json # Import the DB, makes sure mongod is running.
$ npm ci
$ npm run start
GET /books -> List all the books in JSON.
GET /books/:id -> Returns the book for the given ID
POST /books/ -> JSON data to inserted to the books db.
PUT /books/:id -> JSON data to update the book data.
DELETE /books/:id -> Removes the book with the specified ID.
OPTIONS / -> Gives the list of allowed request types.
HEAD / -> HTTP headers only, no body.
TRACE / -> Blocked for security reasons.