# thesaurus

> a thesaurus of words, it contains english by default but it can be used with your own data file

Latest version **0.0.1** (published 2019-08-16) · 0 weekly downloads

## Install

```sh
npm install thesaurus
pnpm add thesaurus
yarn add thesaurus
bun add thesaurus
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; large bundle; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2019-08-16 |
| First published | 2013-09-22 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 15.9 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 45 |
| Author | Julian Bilcke |
| Maintainers | jbilcke |

## Links

- npm: https://www.npmjs.com/package/thesaurus
- Repository: https://github.com/daizoru/node-thesaurus
- Homepage: https://github.com/daizoru/node-thesaurus#readme
- Issues: https://github.com/daizoru/node-thesaurus/issues
- npm.io page: https://npm.io/package/thesaurus

## Recent versions

- 0.0.1 (latest) — 2019-08-16
- 0.0.0 — 2013-09-22

## README

# Thesaurus

*a thesaurus of any languages using LibreOffice's dictionaries*

## License

99.9999% of this library being made of words from MyThes, the open-office thesaurus, see the LICENSE.txt at the root of the project.

## Usage

### Basic usage

```Javascript
var thesaurus = require("thesaurus");

// basically returns a list of similar words
console.log(thesaurus.find("structuralism"));
[ 'structural linguistics',
  'linguistics',
  'structural anthropology',
  'theory',
  'structural sociology' ]

// please be aware that all meanings are merged into the same list.
// this is not a semantic thesaurus.
console.log(thesaurus.find("constitutional"));
[ 'law',
  'property',
  'constitutional',
  'built-in',
  'inbuilt',
  'inherent',
  'integral',
  'intrinsic',
  'intrinsical',
  'constituent',
  'constitutive',
  'organic',
  'essential',
  'walk' ]
```

### Import an OpenOffice thesaurus file

expect a th_en_US_new.dat that you can get at http://lingucomponent.openoffice.org/MyThes-1.zip

```Javascript
var thesaurus = require("thesaurus");

// import the file, add (or update) the words. This function extends the preloaded English Thesaurus Dictionary. For using the loaded one only, use "replace" function instead.
var updated_thesaurus = thesaurus.load("./th_en_US_new.dat");

// TODO you can't save it yet.. but you can export the resulting JSON using:
console.log(updated_thesaurus.toJson());

// to clear the internal dictionary
thesaurus.reset()

// to replace the loaded dictionary by one loaded from the given thesaurus dat file.(reset and load) 
thesaurus.replace("./th_en_US_new.dat")
```

---
_Source: https://npm.io/package/thesaurus · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
