Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adhityaramadhanus/encloute-node
(unofficial) enclout language api module for node
https://github.com/adhityaramadhanus/encloute-node
Last synced: 22 days ago
JSON representation
(unofficial) enclout language api module for node
- Host: GitHub
- URL: https://github.com/adhityaramadhanus/encloute-node
- Owner: AdhityaRamadhanus
- License: mit
- Created: 2016-06-24T15:11:12.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-25T09:03:31.000Z (over 8 years ago)
- Last Synced: 2024-04-26T19:42:56.312Z (7 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/AdhityaRamadhanus/encloute-node.svg?branch=master)](https://travis-ci.org/AdhityaRamadhanus/encloute-node)
Enclout-Node
Installation |
Usage |
License
Enclout Language Api (https://www.enclout.com) module for nodejs
Installation
------------`npm install enclout-node`
Usage
-----```js
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]