https://github.com/9elements/academy-api-demo
https://github.com/9elements/academy-api-demo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/9elements/academy-api-demo
- Owner: 9elements
- Created: 2020-12-07T14:13:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-07T14:13:50.000Z (over 5 years ago)
- Last Synced: 2026-01-25T23:18:21.013Z (3 months ago)
- Language: HTML
- Size: 799 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bookmonkey-api
The bookmonkey-api is a demo api to list, get, create, update and delete books.
It's very handy for [workshops](https://workshops.de). It comes with its own documentation.
## Installation & Usage
* Run `npm install -g bookmonkey-api`.
* Start the api server with `bookmonkey-api`.
* Open the documentation on `http://localhost:4730/`
## Supported actions
GET /books // Get all books
GET /books/:isbn // Get a specific book by ISBN
POST /books // Create a new book
PUT /books/:isbn // Update a book by ISBN
DELETE /books/:isbn // Delete a book by ISBN