1.0.14 • Published 6 years ago

amazon-book-lookup v1.0.14

Weekly downloads
1
License
MIT
Repository
-
Last release
6 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

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago