Socket
Socket
Sign inDemoInstall

lemmer

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lemmer

Wordnet Lemmer


Version published
Weekly downloads
115
increased by18.56%
Maintainers
1
Weekly downloads
 
Created
Source

Lemmer

This is a simple English lemmer library for Node.js using WordNet. This Library is sugar for on top of validForms.

You can learn more about Lemmatizing words on WikiPedia;

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']
});

Fore more Node.js NLP check out;

License

The MIT License (MIT)

Copyright © 2015 Rob Ellis

FAQs

Package last updated on 07 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc