1.0.1 • Published 6 years ago

@hic/keyword-scoring v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

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)