thefeeling-amazon-lookup
v1.0.1
Published
A module that allows you to lookup books, movies, etc on amazon and returns a simply formatted bunch of information.
Downloads
6
Readme
thefeeling-amazon-lookup
A module that allows you to lookup books, movies, etc on amazon and returns a simply formatted bunch of information.
- Run
npm install
- Run
npm link
- In the project where you'd like to use this, run
npm link thefeeling-amazon-lookup
.
Use is as follows:
var lookup = require('thefeeling-amazon-lookup');
lookup.lookupBook('Harry Potter', function(err, result) {
console.log('Look, I have harry potter books!', result);
});