# lemmer

> Wordnet Lemmer

Latest version **0.3.0** (published 2017-06-05) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.3.0 |
| Published | 2017-06-05 |
| First published | 2015-04-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.12.18 |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 13 |
| Author | Rob Ellis |
| Maintainers | benhjames, silentrob |

## Links

- npm: https://www.npmjs.com/package/lemmer
- Repository: https://github.com/superscriptjs/lemmer
- Homepage: https://github.com/superscriptjs/lemmer#readme
- Issues: https://github.com/superscriptjs/lemmer/issues
- npm.io page: https://npm.io/package/lemmer

## Dependencies (3)

- [lodash](https://npm.io/package/lodash.md) ^4.17.2
- [node-wordnet](https://npm.io/package/node-wordnet.md) ^0.1.12
- [wndb-with-exceptions](https://npm.io/package/wndb-with-exceptions.md) ^3.0.1

## Recent versions

- 0.3.0 (latest) — 2017-06-05
- 0.2.1 — 2016-12-09
- 0.2.0 — 2016-12-04
- 0.1.6 — 2015-08-02
- 0.1.5 — 2015-08-02
- 0.1.4 — 2015-05-29
- 0.1.2 — 2015-04-11
- 0.1.1 — 2015-04-08
- 0.1.0 — 2015-04-07

## README

# Lemmer

This is a simple English lemmer library for Node.js using WordNet.
This Library is sugar for on top of [validForms](https://github.com/morungos/wordnet#validformsword-callback).

You can learn more about Lemmatizing words [on WikiPedia](http://en.wikipedia.org/wiki/Lemmatisation);

    npm install lemmer

## Usage

    var Lemmer = require('lemmer');
    Lemmer.lemmatize('fought', function(err, word){
      console.log(word); // ['fight']
    });

    Lemmer.lemmatize(['went','and','bought], function(err, words){
      console.log(words); // ['go','and','buy']
    });

## Usage using Promises

    var Lemmer = require('lemmer');
    Lemmer.lemmatize('fought').then(word){
      console.log(word); // ['fight']
    });

    Lemmer.lemmatize(['went','and','bought]).then(words){
      console.log(words); // ['go','and','buy']
    });

## Related
Fore more Node.js NLP check out;
* [WordNet](https://github.com/morungos/wordnet/)
* [Natural Node](https://github.com/NaturalNode/natural/)

## License

[The MIT License (MIT)](LICENSE.md)

Copyright © 2015 Rob Ellis

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