1.0.4 • Published 6 years ago

@timheckel/parallel-dots v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

paralleldots

NodeJS wrapper for the paralleldots API (www.paralleldots.com)

All the text functionality is available through this API wrapper, including:

  • sentiment (text)
  • similarity (text_1, text_2)
  • ner (text)
  • keywords (text)
  • taxonomy (text)
  • emotion (text)
  • intent (text)
  • multilang (text, lang_code)
  • abuse (text)
  • sentiment_social (text)

Your usage is also available via:

  • usage (no required params)

Calling the API:

const parallelDots = require("@timheckel/parallel-dots");

const pd = new parallelDots({ 
  key: YOUR_PARALLEL_DOTS_API_KEY 
});

pd.call({
  path: "sentiment"
  , text: "Some text to analyze"
  }, (err, res) => {
    console.log("Res ", err, res);
  }
)
1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago