sentiment-analysis

Sentiment analysis module using AFINN-111

Usage no npm install needed!

<script type="module">
  import sentimentAnalysis from 'https://cdn.skypack.dev/sentiment-analysis';
</script>

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