Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bifot/synonymize-api
Easy API for synonymize russian words.
https://github.com/bifot/synonymize-api
api node nodejs synonymize words
Last synced: 6 days ago
JSON representation
Easy API for synonymize russian words.
- Host: GitHub
- URL: https://github.com/bifot/synonymize-api
- Owner: bifot
- License: mit
- Created: 2017-03-20T16:30:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-09T18:14:21.000Z (over 7 years ago)
- Last Synced: 2024-10-30T03:55:41.271Z (about 2 months ago)
- Topics: api, node, nodejs, synonymize, words
- Language: JavaScript
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Synonymize API
Easy API for synonymize russian words.
## Installation
```
$ npm install synonymize-api
```## Usage
```javascript
const synonymize = require('synonymize-api');synonymize('машина').then(response => {
console.log(response); // => [ 'автомобиль', 'аппарат', 'спорткар', 'more 20 items...' ]
console.log(response[2]); // => 'спорткар'
});
```## License
[MIT](https://tldrlegal.com/license/mit-license)