# synonyms-array
56122 unique words arranged as 38957 synonyms groups.

### Installation

Install the dependencies and devDependencies and start the server.

```
$ npm install synonyms-array
```

### Example

```
const synonymsArray = require('synonyms-array');
console.log(synonymsArray.get('node'));
```
Output

```
[
  'boss',         'node',
  'thickening',   'pommel',
  'knob',         'guest',
  'client',       'invitee',
  'inspissation', 'thickener',
  'symptom',      'bubonic',
  'customer',     'nodulated',
  'noduled',      'unshapely',
  'nodular'
]
```