![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
amazon-book-search
Advanced tools
This allows you to find books on amazon trough their product api, it have two ways for it to be used
$ npm install amazon-book-search
$ npm install mocha -g
$ npm test
var Amazon = require('amazon-book-search');
var amazonClient = new Amazon(('awsKey','awsSecret'));
// First 10 Results
amazonClient.search('your thoughts on books', function(error, responses){
console.log(responses);
});
// Next 10 results (page 2)
amazonClient.search('your thoughts on books', 2,function(error, responses){
console.log(responses);
});
There is a maximum of 10 pages returned by Amazon so only 100 products will be displayed
var express = require('express');
var app = express();
var Amazon = require('amazon-book-search');
var abs = new Amazon({awsKey:'AKIAI6HXKAF4PMFLG65A', awsSecret:'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'});
app.get('/search',abs.middleware());
app.listen(3000);
Now go to http://localhost:3000/search to start making queries via querystring example:
There is also a maximum of 10 pages limit
You can also checkout this repo and go to the examples folder
$ git clone https://github.com/kuryaki/amazon-book-search.git
$ cd amazon-book-search
$ npm install
$ cd examples
$ node library
This will prompt results for a "node.js" search on amazon
$ node rest-api
This will launch an http server on localhost listening at port 3000 check the connect middleware documentation to make queries
$ node search-ui
This will launch the an enhanced REST-API server, but now you can go to http://localhost:3000/ and start making searchs there
FAQs
Code Challenge
The npm package amazon-book-search receives a total of 0 weekly downloads. As such, amazon-book-search popularity was classified as not popular.
We found that amazon-book-search demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.