Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
node-apac - Node.js client for the Amazon Product Advertising API.
apac (Amazon Product Advertising Client) will allow you to access the Amazon Product Advertising API from Node.js. It supports the newly required Request Signatures which can be a bit tedious to generate on your own. Learn more about the Amazon Product Advertising API.
node-apac is just a thin wrapper around Amazon's API. The only intent is to take care of request signatures, performing the HTTP requests, processing the responses and parsing the XML. You should be able to run any operation becuase the operation and all parameters are passed directly to the execute method just as they will be passed to Amazon. The result is that you feel likely you're working directly with the API, but you don't have to worry about some of the more teadious tasks.
#Installation
Install using npm:
npm install apac@latest
If you try to install without "@latest", it will try to install the most recent stable version, but there is no stable version yet. So for now you must specify latest.
#Quick Start
Here is a quick start to help you get node, npm and node-apac installed and running: node-apac Quick Start
Here's a quick example:
var sys = require('sys'),
OperationHelper = require('apac').OperationHelper;
var opHelper = new OperationHelper({
awsId: '[YOUR AWS ID HERE]',
awsSecret: '[YOUR AWS SECRET HERE]',
assocId: '[YOUR ASSOCIATE TAG HERE]',
});
opHelper.execute('ItemSearch', {
'SearchIndex': 'Books',
'Keywords': 'harry potter',
'ResponseGroup': 'ItemAttributes,Offers'
}, function(error, results) {
if (error) { sys.print('Error: ' + error + "\n") }
sys.print("Results:\n" + sys.inspect(results) + "\n");
});
Results are returned as a JSON object (XML results parsed using xml2js -- thanks pierrel).
#API Documentation
Because we don't define any specific operations, we also don't document them. What a waste when you can find them all here: API Reference
FAQs
Amazon Product Advertising API Client for Node
The npm package apac receives a total of 431 weekly downloads. As such, apac popularity was classified as not popular.
We found that apac demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.