Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 523 Bytes

File metadata and controls

26 lines (17 loc) · 523 Bytes

Exceptionless Browser

This package provides native JavaScript support for applications that are built in vanilla HTML and JS.

Installation

Package Managers

npm install @exceptionless/browser

or

yarn add @exceptionless/browser

Configuration

await Exceptionless.startup(c => {
  c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw";
  c.serverUrl = "http://localhost:5000";
  c.setUserIdentity("12345678", "Blake");
  c.useSessions();
  c.defaultTags.push("Example", "JavaScript");
});