/AFINN-json

Node and JSON version of AFINN - A list of words rated by positive/negative sentiment

Primary LanguageJavaScript

AFINN-json

Node and JSON version of AFINN - A list of words rated by positive/negative sentiment'. Useful for sentiment analysis.

From the AFINN site,

AFINN is a list of English words rated for valence with an integer between minus five (negative) and plus five (positive).

##Usage AFINN.json can be used out of the box.

Or you can access the data in Node:

var AFINN = require('./AFINN.js');

var obj = AFINN.AFINNObject(); //Object representation
var json = AFINN.AFINNJSON(); //JSON representation