New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

openamplify

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openamplify

node.js client supporting OpenAmplify REST API

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

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

Keywords

open amplify

FAQs

Package last updated on 26 Jan 2012

Did you know?

Socket

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.

Install

Related posts