0.0.9 • Published 5 years ago

@owsas/sentiment-multilang v0.0.9

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

sentiment-multilang

Multilanguage AFINN-based sentiment analysis for Node.js

Sentiment is a Node.js module that uses the AFINN-111 wordlist to perform sentiment analysis on arbitrary blocks of input text.

It supports the following languages: English, French, Spanish, German, Dutch and Italian. For languages other than english, it uses a locale transposition of AFINN-111 wordlist. The wordlist can be extended adding words too.

Emojis are also supported:

describe('Emoji', function() {
  test('It should detect the usage of emojis', function () {
    expect(sentiment('Te amo! 😍', 'es').vote).toEqual('positive');
  });
});

Installation

npm install @owsas/sentiment-multilang

npm.io

Usage

// Require the sentiment-multilang module
const { sentiment } = require('@owsas/sentiment-multilang');
// Get the sentiment from a text in a supported language
const result = sentiment('I had the most wonderful stay', 'en');  // result.vote = 'positive'

Improvements

  • All languages were moved to langs directory in separate .json files
  • Code was moved to Typescript, and users can now see hints in their code
  • Tests were moved to jest
  • Testing with travis

Credits

Test

npm t # runs jest
0.0.9

5 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago