An open API service indexing awesome lists of open source software.

https://github.com/localvoid/stemr

Javascript (TypeScript) implementation of the Snowball English (porter2) stemmer algorithm
https://github.com/localvoid/stemr

javascript porter snowball stemmer text-processing typescript

Last synced: 12 months ago
JSON representation

Javascript (TypeScript) implementation of the Snowball English (porter2) stemmer algorithm

Awesome Lists containing this project

README

          

# [stemr](https://github.com/localvoid/stemr) · [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/localvoid/stemr/blob/master/LICENSE) [![npm version](https://img.shields.io/npm/v/stemr.svg)](https://www.npmjs.com/package/stemr) [![codecov](https://codecov.io/gh/localvoid/stemr/branch/master/graph/badge.svg)](https://codecov.io/gh/localvoid/stemr) [![CircleCI Status](https://circleci.com/gh/localvoid/stemr.svg?style=shield&circle-token=:circle-token)](https://circleci.com/gh/localvoid/stemr) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/localvoid/stemr)

`stemr` package provides a javascript (TypeScript) implementation of the [Snowball](http://snowball.tartarus.org/)
English (porter2) stemmer algorithm.

## Example

```ts
import { stem } from "stemr";

stem("stemming");
// => "stem"
```