openamplify

0.0.1 • Public • Published

openamplify - json client for OpenAmplify's REST API

current api documentation: http://www.openamplify.com/node/46

install

npm install openamplify

usage

var amplify = require('openamplify').createClient({ ApiKey: '...' });
 
// analyze a url
amplify.url('http://news.ycombinator.com', function (error, reply, status) {
  // reply is a json object containing OpenAmplify's response
  console.log(reply);
});
 
// analyze some text
var text = 'the weather is freezing';
var options = { SearchTerms: 'weather' };
 
amplify.text(text, options, function (err, reply) {
  console.log(reply);
});
 

Readme

Keywords

none

Package Sidebar

Install

npm i openamplify

Weekly Downloads

0

Version

0.0.1

License

none

Last publish

Collaborators

  • matomesc