@isabelle-ai/js-client

1.0.4 • Public • Published

Dependency Status Dependency Size Open Issues Version

JavaScript / Node.js Client for The Worlds Most Powerful Sentiment Analysis API.

Example

import Isabelle from '@isabelle-js/js-client';

const client = new Isabelle({
	key: '9ce4e535-01d1-4f27-ad6f-649a4851c330', // your api key
});

const extract = async () => {
	try {
		const sentiment = await client.sentiment({
			text: 'I strongly hate apples because they taste horrible!',
		});

		console.log(sentiment);
	} catch (error) {
		console.error(error);
	}
};

extract();

/@isabelle-ai/js-client/

    Package Sidebar

    Install

    npm i @isabelle-ai/js-client

    Weekly Downloads

    1

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    8.59 kB

    Total Files

    15

    Last publish

    Collaborators

    • nparsons08