test-auction-api
v1.0.3
Published
A simple backend for the Test Auction API example application.
Downloads
1
Readme
test-auction-api
The auction-test-api is a demo api to list, get, create, update and delete auctions. It comes with its own documentation.
Installation & Usage
- Run
npm install -g test-auction-api
. - Start the api server with
test-auction-api
. - Open the documentation on
http://localhost:4730/
Supported actions
GET /auctions // Get all auctions
GET /auctions/:id // Get a specific auction by id
POST /auctions // Create a new auction
PUT /auctions/:id // Update a auction by id
DELETE /auctions/:id // Delete a auction by id