An open API service indexing awesome lists of open source software.

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.)

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)