Installation

First, install the Bugster SDK package using your preferred package manager:

npm install @bugster/bugster-js

Basic Setup

After installing the package, import and initialize Bugster SDK in your application:

import BugsterTracker from '@bugster/bugster-js';

BugsterTracker.init({
  apiKey: 'YOUR_BUGSTER_API_KEY',
  onInitialized: () => {
    console.log('Bugster SDK initialized successfully!');
  },
});

Replace 'YOUR_BUGSTER_API_KEY' with your actual API key from the Bugster dashboard. Initialize Bugster SDK as early as possible in your application’s lifecycle.

Framework-Specific Setup

For framework-specific installation and setup instructions, check our framework guides:

Verifying Installation

To verify your installation:

  1. Check your browser’s console for the success message
  2. Verify that user interactions are being captured in your Bugster dashboard
  3. Try generating a test case to ensure full functionality

Troubleshooting

If you encounter any issues:

  1. Ensure you’re using Node.js version 19.x or later
  2. Clear your npm cache: npm cache clean --force
  3. Delete your node_modules folder and package-lock.json file, then run npm install again
  4. Verify your API key is correctly configured

If problems persist, contact our support team.