Learn how to set up our Browser SDK in your project
This guide will walk you through integrating and using the BugByBug Browser SDK in your web application.
1
Install the SDK
Copy
npm install @bugbybug/browser
2
Import into your app
Initialization the SDK into your index.js or main.ts
Copy
import * as BugByBug from '@bugbybug/browser';BugByBug.init({ apiKey: 'YOUR_PROJECT_API_KEY', // Starts with bbb_ environment: 'production'});app.mount('#app');