1.0.4 • Published 4 years ago

@isabelle-ai/js-client v1.0.4

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

npm.io

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();
1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago