stemr ·     
stemr package provides a javascript (TypeScript) implementation of the Snowball
English (porter2) stemmer algorithm.
Example
``ts
import { stem } from "stemr";
stem("stemming");
// => "stem"
``