Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hakanensari/hoover
A Node.js wrapper to the Amazon Product Advertising API
https://github.com/hakanensari/hoover
Last synced: 23 days ago
JSON representation
A Node.js wrapper to the Amazon Product Advertising API
- Host: GitHub
- URL: https://github.com/hakanensari/hoover
- Owner: hakanensari
- License: mit
- Created: 2012-02-02T19:33:24.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2014-08-11T18:32:56.000Z (over 10 years ago)
- Last Synced: 2024-10-09T16:46:08.612Z (about 1 month ago)
- Language: CoffeeScript
- Homepage:
- Size: 244 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hoover
[![Build Status] [status]] [travis]
![hoover] [hoover]
## Description
Hoover is a Node.js wrapper to the [Amazon Product Advertising API] [amazon].
The API gives you access to the product catalogues of various Amazon websites.
## Installation
```bash
npm install hoover
```## Usage
```coffee
Hoover = require 'hoover'req = new Hoover
key: 'key'
secret: 'secret'
tag: 'tag'
locale: 'uk'req
.build
operation: 'ItemSearch'
keywords: 'Deleuze'
searchIndex: 'All'
.get (err, res) ->
# res.toJS()
res.find 'Item', (item) ->
console.dir item
```## Further Reading
* [Examples] [examples]
* [Amazon API docs] [api]
* [Annotated source] [source][status]: https://secure.travis-ci.org/hakanensari/hoover.png
[travis]: http://travis-ci.org/hakanensari/hoover
[hoover]: http://f.cl.ly/items/1Q3W372A0H3M0w2H1e0W/hoover.jpeg
[amazon]: https://affiliate-program.amazon.co.uk/gp/advertising/api/detail/main.html
[examples]: https://github.com/hakanensari/hoover/tree/master/examples
[api]: http://aws.amazon.com/archives/Product%20Advertising%20API
[source]: http://hakanensari.com/hoover/index.html