Ultra simple NodeJS Sentiment text analyzer based on afinn.
const analyse = require("simple-sentiment-lib");
const exampleData = "Lorem Ipsum dolor sit amet, consectetur adipiscing elit good great bad ";
var result = analyse(exampleData);
console.dir(result);
{
score: 3,
comparative: 0.2727272727272727,
positive: {
score: 6,
comparative: 0.5454545454545454,
words: [ 'good', 'great' ]
},
negative: { score: 3, comparative: 0.2727272727272727, words: [ 'bad' ] }
}
##Github: https://github.com/voidzero-development/simple-sentiment-lib
More usage examples:
https://github.com/voidzero-development/NodeJS-Sentiment