npm install --save @braze/web-sdk
# or, using yarn:
# yarn add @braze/web-sdkimport * as braze from "@braze/web-sdk";
// initialize the SDK
braze.initialize('YOUR-API-KEY-HERE', {
baseUrl: "YOUR-SDK-ENDPOINT-HERE",
});
braze.changeUser('Jane Doe');| Name | Description | npm | CDN URL |
|---|---|---|---|
| Full | Full SDK with UI. When using the npm version, Javascript bundlers will remove any unused code including the UI. | @braze/web-sdk |
https://js.appboycdn.com/web-sdk/6.4/braze.min.js |
| Core | Contains the SDK without UI. You will need to implement your own UI for In-App Messaging and Content Cards when using this version of the SDK. Our UI elements are fully customizable via css, so we generally recommend integration of the full library instead. | N/A | https://js.appboycdn.com/web-sdk/6.4/braze.core.min.js |
| No-AMD | Contains the full SDK without AMD support. This is useful if your site uses RequireJS or another AMD module-loader, but you prefer to load the SDK through the CDN. | N/A | https://js.appboycdn.com/web-sdk/6.4/braze.no-amd.min.js |
- Modern Chromium based browsers (Chrome, Edge, Opera)
- Firefox
- Safari
- Modern Chromium based browsers (Chrome, Edge, Opera)
- Firefox
- Safari
Pass the option enableLogging: true to the initialize function (braze.initialize('YOUR-API-KEY-HERE', { baseUrl: 'YOUR-SDK-ENDPOINT', enableLogging: true });) to cause Braze to log to the javascript console. This is valuable for development but is visible to all users,
so remove this option or provide an alternate logger before you release your page to production.
Braze uses Font Awesome 4.7.0 for in-app message icons. To disable loading Font Awesome, use the doNotLoadFontAwesome initialization option. Check out the cheat sheet to browse available icons.
If you have questions, please contact [email protected].

