Create a Sentry account
Go to sentry.io and sign up. You can use your email address, or sign in with Google or GitHub.During sign-up, you’ll create your organization — the top-level container for all your projects and team members. Choose a name for your company or team.
Sentry is free for small teams. The Developer plan includes one user and generous event limits to get started without a credit card.
Create a project
After signing in, create your first project:
- Go to Settings > Projects > Create Project
- Select your platform (JavaScript, Python, or any of the 100+ supported platforms)
- Give your project a name that matches your application or service
- Assign it to a team
Install the SDK
Install the Sentry SDK for your language using your package manager.For Node.js applications:
- JavaScript
- Python
Initialize Sentry
Add the initialization code as early as possible in your application’s startup — before any other code runs.Replace
YOUR_DSN with the DSN you copied when creating your project.The DSN format is
https://<public_key>@<host>/<project_id>. Sentry generates this automatically — you don’t need to construct it manually.View your event in the dashboard
Go to your Sentry dashboard at sentry.io. Navigate to Issues in the left sidebar.Your test error should appear within a few seconds. Click it to see:
- The full stack trace
- Breadcrumbs leading up to the error
- Environment and release information
- Device and browser context (for frontend errors)
If your event doesn’t appear after 30 seconds, check that the DSN in your code matches exactly what’s shown in Settings > Projects > [your project] > Client Keys (DSN).
Next steps
Account Setup
Configure your organization, invite team members, and set up SSO.
Create a Project
Learn more about project settings, DSN keys, and environments.
SDK Reference
Explore advanced SDK configuration for your platform.
Alerts
Set up alert rules so you get notified when errors occur.