Package Exports
- html-stemmer
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (html-stemmer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
html-stemmer
Main repo: https://github.com/marcelpuyat/html-stemmer
Overview
Extracts all words from a file, filtering out HTML tags, stemming using Porter2 and filtering out stop words.
Install
npm install html-stemmerUsage
var htmlStemmer = require('html-stemmer');
htmlStemmer.initialize();
htmlStemmer.getStemmedWords('filename', function(stemmedWordsArray) {
console.log(stemmedWordsArray); // Prints out all stemmed words in 'filename'
});