@owsas/sentiment-multilang
TypeScript icon, indicating that this package has built-in type declarations

0.0.9 • Public • Published

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

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

Package Sidebar

Install

npm i @owsas/sentiment-multilang

Weekly Downloads

0

Version

0.0.9

License

MIT

Unpacked Size

315 kB

Total Files

17

Last publish

Collaborators

  • jcguarinpenaranda123