Docs/Getting Started/Quick Start

Quick Start

Get your first error tracked in under 5 minutes.

1. Create an Account

Sign up at app.unseenr.io/register. You can use GitHub OAuth or email/password. The free plan includes 5,000 events per month, no credit card required.

2. Create an Organization

After signing up, you'll be guided through onboarding to create your first organization. The organization is your billing and team boundary.

3. Create a Project

Inside your organization, create a project. Choose a name and platform (JavaScript, Node.js, Python, Go, Ruby, or Other). Unseenr generates a unique DSN (Data Source Name) for your project.

4. Install the SDK

For browser JavaScript:

npm install @unseenr/node

5. Initialize the SDK

import * as Unseenr from "@unseenr/node";

Unseenr.init({
  dsn: "https://<PUBLIC_KEY>@app.unseenr.io/<PROJECT_ID>",
});

Replace the DSN with the one from your project's Quickstart page.

6. Send a Test Event

try {
  throw new Error("Test error from Unseenr");
} catch (error) {
  Unseenr.captureException(error);
}

7. View in Dashboard

Navigate to your project's Issues page. Your test error should appear within seconds.

Next Steps

Also available in:Deutsch