@hic/keyword-scoring
v1.0.1
Published
keyword and score generator from a given txt
Downloads
2
Keywords
Readme
README
Text analyzer package
This package will export the following modules:
pointsFromText
findSynon
look at runner.js to see a basic example
Execute runner.js with:
npm i && npm run start
Using the module in NODE.JS
var textanalyzer = require('scorekeyword')
var txt = 'over the bridge the air is heavy, under the bridge the air is light, i love my bridge'
textanalyzer.pointsFromText(txt)
.then(console.log)