UNPKG

sentiment-analysis-textblob

Version:
12 lines (10 loc) 311 B
const { analyzeSentimentPromise } = require('./src/index'); async function test() { try { const result = await analyzeSentimentPromise("This product is awesome!"); console.log(result, 'Sentiment analysis result:'); } catch (err) { console.error('Lỗi:', err.message); } } test();