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
- Host: GitHub
- URL: https://github.com/localvoid/stemr
- Owner: localvoid
- License: mit
- Created: 2016-10-18T09:04:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-19T04:15:44.000Z (almost 8 years ago)
- Last Synced: 2025-04-11T21:13:44.385Z (12 months ago)
- Topics: javascript, porter, snowball, stemmer, text-processing, typescript
- Language: TypeScript
- Size: 196 KB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [stemr](https://github.com/localvoid/stemr) · [](https://github.com/localvoid/stemr/blob/master/LICENSE) [](https://www.npmjs.com/package/stemr) [](https://codecov.io/gh/localvoid/stemr) [](https://circleci.com/gh/localvoid/stemr) [](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"
```