# BrowserSession | Sentry for JavaScript

This integration only works inside a browser environment.

*Import name: `Sentry.browserSessionIntegration`*

Sentry's [Release Health](https://docs.sentry.io/product/releases/health.md) feature allows you to track user adoption and your application's crash-free rate. When the BrowserSession integration is enabled, it automatically creates a session each time a user loads your page or application. These sessions are used to track your release health. If an error is captured during an active session, the session will be flagged as faulty. Read more about [Sessions](https://docs.sentry.io/platforms/javascript/configuration/releases.md#sessions).

```JavaScript
Sentry.init({
  integrations: [Sentry.browserSessionIntegration()],
});
```
