https://github.com/unlight/thesaurus-service
Provides synonym for word, uses remote sites (words.bighugelabs.com, thesaurus.altervista.org, thesaurus.com, etc.)
https://github.com/unlight/thesaurus-service
Last synced: 7 months ago
JSON representation
Provides synonym for word, uses remote sites (words.bighugelabs.com, thesaurus.altervista.org, thesaurus.com, etc.)
- Host: GitHub
- URL: https://github.com/unlight/thesaurus-service
- Owner: unlight
- Created: 2015-06-12T22:43:02.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-02T16:21:03.000Z (about 9 years ago)
- Last Synced: 2024-04-10T09:58:09.213Z (about 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 49.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
thesaurus-service
=================
Provides synonym for word, uses remote sites (words.bighugelabs.com, thesaurus.altervista.org, thesaurus.com, etc.)
USAGE
-----
```js
var ts = require("thesaurus-service");
var streamTs = ts.stream("development"); // streamTs is a Readable stream
streamTs.on("data", function(data) {
console.log(data.word); // evolutiong, rowthgrowing, maturation, ontogeny, ...
});
```
CHANGELOG
---------
1.0 (24 Jul 2015)
- First release
1.1 (2 Sep 2015)
- Added multitran.ru
- Added moby-thesaurus.org
1.2 (10 Sep 2015)
- Fixed readme usage section
- Fixed altervista (added error handler)