Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

sentiment-analysis

Lissy9370MIT0.1.2

Sentiment analysis module using AFINN-111

sentiment, analysis, sentiment, analysis, twitter, AFINN, AFINN-111, emotion, detection, valence

readme

sentiment-analysis

Build Status Dependency Status devDependency Status Code Climate

AFINN-111 based Sentiment analysis module

Install

npm install sentiment-analysis --save

Usage

var sentimentAnalysis = require('sentiment-analysis');

sentimentAnalysis('Dinosaurs are awesome!'); // +0.4
sentimentAnalysis('Everything is stupid');  // -0.2
sentimentAnalysis('Windows is very unstable');  // -0.2
sentimentAnalysis('London is gloomy today because of all the smog');  // -0.4
sentimentAnalysis('I am so grateful for all the presents, thank you!');  // +0.5
sentimentAnalysis('Really enjoying the warm weather');  // +0.3
sentimentAnalysis('It was a catastrophic disaster');  // -0.6

sentiment-analysis will return a score between -1 and +1, where negative numbers represent a negative overall sentiment.

Testing

npm test

See unit test, integration testing results on Travis CI

Development

See the gulpfile.js for documentation of build process.

License

MIT � Alicia Sykes