Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
amz-products
Advanced tools
A thin wrapper for the Amazon Products API, supporting all methods on the API.
This module is a thin wrapper around the Amazon Products API. Unlike other modules, which only support one or two methods, this wrapper supports all the methods of the API.
The module is intentionally naive. It acts as a simple wrapper, allowing you to pass any valid options to the methods and returns the root response object from Amazon. I kept it this way, so you'll have the maximum flexibility in how you deal with responses.
Oh, and it returns JSON, not XML.
npm install amz-products
Each method takes an options
hash as the first argument, and a callback as the second, which takes error
and response
arguments.
var AmazonAPI = require('amz-products');
var amazon = new AmazonAPI({
accessKeyId : //your access key,
secretAccessKey : //your secret access key,
associateId : //your associate ID
});
amazon.getItemsInBrowseNode({
BrowseNode: 1234566
}, function(err, res){
//do something with the response here
});
All methods in the Amazon Products API have been mapped to this wrapper, but, I've renamed them slightly, since I think Amazon's naming sucks. Here's how things map:
Amazon API Method | Our Method |
---|---|
BrowseNodeLookup | lookupBrowseNode |
ItemSearch | getItemsInBrowseNode |
ItemLookup | getItemDetail |
CartAdd | addToCart |
CartClear | clearCart |
CartCreate | createCart |
CartGet | getCart |
CartModify | modifyCart |
SimilarityLookup | getSimilarItems |
All methods take the same options as the Amazon API, in a single opts
hash passed as the first argument in the method. Refer to the Amazon Products API Documentation for details on the options you can pass.
The Product Advertising API support different locales, and so does this module. To use a different locale, simply pass the locale ID in when initializing the module. Example:
var AmazonAPI = require('amz-products');
var amazon = new AmazonAPI({
accessKeyId: //your access key
secretAccessKey: //your secret access key
associateId: //your associate ID
locale: 'UK'
});
The module defaults to "US", and passing a locale isn't required. Locale codes are as follows:
Locale | Code |
---|---|
Brazil | BR |
Canada | CA |
China | CN |
France | FR |
Germany | DE |
India | IN |
Italy | IT |
Japan | JP |
Mexico | MX |
Spain | ES |
United Kingdom | UK |
United States | US |
Frankly, all the ones I've come across on npm suck. Either they don't support all the methods, or they provide an arcane interface to the API. I'm passionate about developer experience, and want an API wrapper that makes sense, is fully featured, and is dead simple to use.
Not much, really. If you've got ideas or suggestions for improving, create an issue or simply issue a pull request.
FAQs
A thin wrapper for the Amazon Products API, supporting all methods on the API.
The npm package amz-products receives a total of 0 weekly downloads. As such, amz-products popularity was classified as not popular.
We found that amz-products 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.