1.1.7 • Published 5 months ago
@afex-bots/feedback v1.1.7
@afex-bots/feedback
This package provides tools for collecting, processing, and analyzing user feedback. It streamlines the feedback loop by offering utilities for automated input handling, sentiment analysis, and structured data output.
Features
- 📩 Automated Feedback Collection: Easily capture feedback through forms or a live chat with support
- 🔒 Secure Data Handling: Ensures all feedback data is stored and processed safely.
- 🔁 Follow-Up Automation: Triggers replies or actions based on feedback type.
- 📈 Lightweight & Extensible: Designed to integrate into existing systems with minimal overhead.
Installation
Install the library and its peer dependency using your preferred package manager:
npm install @afex-bots/feedback
#or
yarn add @afex-bots/feedback
#or
pnpm add @afex-bots/feedback
Quick Start
1. Import the Required CSS
import "@afex-bots/feedback/style.css";
2. Basic Usage Example
import { FeedbackBot } from "@afex-bots/feedback";
export function App() {
return (
<>
<FeedbackBot apiKey="" apiURL="" />
</>
);
}