
Security News
Nx npm Packages Compromised in Supply Chain Attack Weaponizing AI CLI Tools
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
amazon-book-search-se
Advanced tools
Simple wrapper around apac to return book results from Amazon's Product Advertising API. Based on amazon-book-search by kuryaki. Uses apac version 2.0.0.
This allows you to find books on amazon through their Product Advertising API. It is a simplified version of amazon-book-search (does not provide express middleware interface). This version does not humanize the results and returns them in original Amazon format. Works well searching by ISBN as well as keywords.
$ npm install amazon-book-search-se
You will need an Amazon API key, secret and associate ID to use this service. For more information,
look at the Amazon Product Advertising API documentation.
var amazonBookSearchSE = require('amazon-book-search-se');
var absse = new amazonBookSearchSE({ awsKey: "YOUR KEY", awsSecret: "YOUR SECRET", assocId: "YOUR ASSOCIATE TAG" });
// search by ISBN
absse.search('9781413027570', function(error, result){
if(error){
console.log(error);
} else {
console.log(result);
}
});
// search by title - first page of 10 results
absse.search('catcher in the rye', function(error, result){
if(error){
console.log(error);
} else {
console.log(result);
}
}, 1);
// search by title - second page of 10 results
absse.search('catcher in the rye', function(error, result){
if(error){
console.log(error);
} else {
console.log(result);
}
}, 2);
There is a maximum of 10 pages returned by Amazon so only 100 products will be displayed.
FAQs
Simple wrapper around apac to return book results from Amazon's Product Advertising API. Based on amazon-book-search by kuryaki. Uses apac version 2.0.0.
The npm package amazon-book-search-se receives a total of 0 weekly downloads. As such, amazon-book-search-se popularity was classified as not popular.
We found that amazon-book-search-se 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
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.