Error Tracker

Documentation

Get started with Error Tracker in minutes

Installation

Install the Error Tracker SDK in your Node.js application:

npm install @blueforge/error-tracker-sdk

Quick Start

Initialize the SDK with your API key:

import { init } from '@blueforge/error-tracker-sdk';

init({
  dsn: 'https://your-api-key@error-tracker.blueforge.studio/1',
  apiKey: 'your-api-key',
});

Sentry SDK Compatibility

Error Tracker is compatible with the Sentry SDK. Simply update your DSN:

SENTRY_DSN=https://sentry.io/<project-id>
# Replace with:
ERROR_TRACKER_DSN=https://your-api-key@error-tracker.blueforge.studio/1

Resources