Learn how to integrate and customize the SaaS Feedback Widget in your application
npm install virmedilacra-widget
import Virmedilacra from "virmedilacra-widget"; const widget = new Virmedilacra({ appId: "your-app-id", theme: "light", userData: { id: "user123", email: "user@example.com", name: "John Doe", image: "https://example.com/avatar.jpg", isPaying: true } }); widget.init();
Your unique application identifier. You can find this in your dashboard.
appId: "Your App ID"
Provide user information to personalize the feedback experience and track feature requests by user.
userData: { id: "unique-user-id", // Required: Unique identifier email: "user@example.com", // Required: User's email name: "John Doe", // Optional: Display name image: "https://...", // Optional: Avatar URL isPaying: true // Optional: Payment status }
Light theme with white background
Dark theme with dark background
// Light theme (default) theme: "light" // Dark theme theme: "dark"