/hoover

A Node.js wrapper to the Amazon Product Advertising API

Primary LanguageCoffeeScriptMIT LicenseMIT

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

npm install hoover

Usage

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