Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aylien_textapi

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aylien_textapi

AYLIEN Text API Client Library for Node.js

  • 0.7.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
122
decreased by-1.61%
Maintainers
1
Weekly downloads
 
Created
Source

About

This is the node.js client library for AYLIEN's APIs. If you haven't already done so, you will need to sign up.

Installation

To install, simply use npm:

$ npm install aylien_textapi

See the Developers Guide for additional documentation.

Example

var AYLIENTextAPI = require('aylien_textapi');
var textapi = new AYLIENTextAPI({
  application_id: "YourApplicationId",
  application_key: "YourApplicationKey"
});
textapi.sentiment({'text': 'John is a very good football player!'}, function(error, response) {
  if (error === null) {
    console.log(response);
  }
});

Keywords

FAQs

Package last updated on 13 Jun 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc