You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

enclout-node

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

enclout-node

(unofficial) Enclout Language Processing API Module for NodeJs

1.0.0
latest
Source
npmnpm
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

Enclout-Node

Installation | Usage | License

Enclout Language Api (https://www.enclout.com) module for nodejs

Installation

npm install enclout-node

Usage

var encloutApi = require('enclout-node')
// Yes we return promises (y)
encloutApi.stemming('Fishing in the world').then(console.log).catch(function (err) {
  console.log('Got Error , ' + err)
})
/*{ text: 'Fish in the world',
  porter_stem: 'Fish in the world',
  uea_stem: 'Fish in the world',
  snowball_stem: 'Fish in the world' }*/
encloutApi.termAnalysis('Fishing in the world').then(console.log).catch(function (err) {
  console.log('Got Error , ' + err)
})

/*{ text: 'Fishing in the world',
  lemma_text: ' fish in the world' }*/

License

MIT © [Adhitya Ramadhanus]

Keywords

Enclout

FAQs

Package last updated on 25 Jun 2016

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