Shoes Price Comparison is an application which allows user to compare different store price for same shoes. This application includes a selection of different brands and compare price based on selected shoes. Information is displayed to user, which makes the user easily search store in a map as well.
All the dependencies is under package.json
file. To install all dependencies you must install Node.js' and 'npm
.
Node.js installation provides a practical guide for installation of Node.js.
npm installation provides a practical guide for installation of npm.
Once Node.js
and npm
is installed, clone this repository and inside the cloned folder type this:
npm install package.json
* @api {get} /shoes/:shoesId Request Shoes information
* @shoesName Shoes
* @shoesDescription Shoes
* @apiParam {Number} id User's unique ID.
* @apiSuccess {String} firstname Firstname of the User.
* @apiSuccess {String} lastname Lastname of the User.
All API requests are made by sending a secure HTTPS request using one of the following methods, depending on the action being taken:
- [POST] Create a resource
- [PUT] Update a resource
- [GET] Get a resource or list of resources
- [DELETE] Delete a resource
Each response will include a status object and (if successful) a result
(result will be an object for single-record queries and an array for list queries). The status object contains an HTTP status_code, text, description, error_code (if an error occurred - see Error Codes) about the result
. The result
contains the result of a successful request.
Each response will be returned with one of the following HTTP status codes:
200
OK
The request was successful400
Bad Request
There was a problem with the request (security, malformed, data validation, etc.)401
Unauthorized
The supplied API credentials are invalid404
Not found
An attempt was made to access a resource that does not exist in the API