1.0.14 • Published 8 years ago

amazon-book-lookup v1.0.14

Weekly downloads
1
License
MIT
Repository
-
Last release
8 years ago

Amazon Book Lookup

Find books using amazon api

Install

 $ npm install amazon-book-lookup

As a library

var Amazon = require('amazon-book-lookup');
var amazonClient =  new Amazon(('awsKey','awsSecret', 'associateID'));

// First 10 Results
amazonClient.search('Author, Book, ASIN, ISBN', function(error, response){
    console.log(response);
});

// Next 10 results (page 2)
amazonClient.search('Author, Book, ASIN, ISBN', 2, function(error, response){
    console.log(response);
});

There is a maximum of 10 pages returned by Amazon so only 100 products will be displayed

1.0.14

8 years ago

1.0.13

8 years ago

1.0.12

8 years ago

1.0.11

8 years ago

1.0.10

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago