0.0.1 • Published 12 years ago

openamplify v0.0.1

Weekly downloads
7
License
-
Repository
github
Last release
12 years ago

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);
});