Corbado Observe helps you measure authentication and passkey flows in your application by instrumenting your application with events. This guide shows how to install the SDK, initialize it, and send your first event.Documentation Index
Fetch the complete documentation index at: https://docs.corbado.com/llms.txt
Use this file to discover all available pages before exploring further.
1. Prerequisites
Before you start, make sure you have:- An active Corbado project in the Corbado management console
- Your
Project IDandAPI Base URLfrom settings
2. Add Corbado Observe to your app
Choose one integration path depending on your stack:- NPM
- CDN
Install the package:
3. Initialize the tracker
Initialize Corbado Observe as early as possible in your app startup.- NPM
- CDN
Enter your
ProjectID and APIBaseURL as provided in the Corbado management console.4. Track your first event
When your login UI is rendered and visible, sendflowStarted:
- NPM
- CDN
5. Debugging
Use debug mode during integration to verify that events are sent with the expected payload. Setdebug: true in your init() call while developing:
- The event name is correct (for example
flowStarted) - Required fields such as
flowNameandtouchpointare present - Events are fired at the correct time in your UI flow
6. Next steps
- Learn the data model and event structure in Tracking overview.