matomesc / awskit

node.js client for working with aws

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

awskit

node.js client for working with various Amazon Web Services

example

var awskit = require('awskit');

// products advertising api
var api = new awskit.Products({ key: 'your_key', tag: 'your_tag', https: true });

// search for an item
api.ItemSearch({ Title: 'node.js', SearchIndex: 'Books' }, function (err, res, body) {
  console.log(body);
});

install

$ npm install awskit

usage

About

node.js client for working with aws


Languages

Language:JavaScript 100.0%