Start widget with npm or yarn
Quick installation guide to start the BetterBugs feedback widget with npm or yarn.
How to Install the BetterBugs Feedback Widget using npm/yarn Package Managers?
3
4
Customize the Widget UI (Optional)
import { Betterbugs } from "@betterbugs/web-sdk";
const startBB = new Betterbugs({
apiKey: "YOUR_API_KEY_HERE", // Workspace API key
projectId: "YOUR_PROJECT_ID_KEY_HERE", // Project to report bugs to
position: { top: "20px", right: "20px" },
styles: {
primaryColor: "#e41c38",
primaryTextColor: "#fff",
theme: "light",
},
});
startBB();Last updated