# Exceptionless.JavaScript [](https://github.com/Exceptionless/Exceptionless.JavaScript/actions) [](https://discord.gg/6HxgFCx) [](https://www.npmjs.org/package/exceptionless) [](https://donorbox.org/exceptionless?recurring=true) The definition of the word exceptionless is: to be without exception. Exceptionless.js provides real-time error reporting for your JavaScript applications in the browser or in Node.js. It organizes the gathered information into simple actionable data that will help your app become exceptionless! ## Show me the code! ```html ``` ```javascript var client = require("exceptionless").ExceptionlessClient.default; client.config.apiKey = "API_KEY_HERE"; try { throw new Error("test"); } catch (error) { client.submitException(error); } ``` ## Using Exceptionless ### Installation You can install Exceptionless.js either in your browser application using Bower or a `script` tag, or you can use the Node Package Manager (npm) to install the Node.js package. #### Browser application Use one of the following methods to install Exceptionless.js into your browser application: - **CDN:** Add the following script to your page: ```html ``` - **Bower:** 1. Install the package by running `bower install exceptionless`. 2. Add the script to your HTML page: ```html ``` In either case, we recommend placing the `script` tag at the very beginning of your page. #### Node.js Use this method to install Exceptionless.js into your Node application: 1. Install the package by running `npm install exceptionless --save`. 2. Require the Exceptionless.js module in your application: ```javascript var client = require("exceptionless").ExceptionlessClient.default; ``` ### Configuring the client In order to use Exceptionless.js, the `apiKey` setting has to be configured first. You can configure the `ExceptionlessClient` class using one of the following ways: #### Browser application - You can configure the `apiKey` as part of the script tag. This will be applied to all new instances of the `ExceptionlessClient` class: ```html ``` - You can set the `apiKey` on the default `ExceptionlessClient` instance: ```javascript exceptionless.ExceptionlessClient.default.config.apiKey = "API_KEY_HERE"; ``` - You can create a new instance of the `ExceptionlessClient` class and specify the `apiKey`, `serverUrl` or [configuration object](https://github.com/exceptionless/Exceptionless.JavaScript/blob/master/packages/core/src/configuration/IConfigurationSettings.ts): ```javascript var client = new exceptionless.ExceptionlessClient("API_KEY_HERE"); // or with an api key and server url var client = new exceptionless.ExceptionlessClient("API_KEY_HERE", "http://localhost:5000"); // or with a configuration object var client = new exceptionless.ExceptionlessClient({ apiKey: "API_KEY_HERE", serverUrl: "http://localhost:5000", submissionBatchSize: 100 }); ``` #### Node.js - You can set the `apiKey` on the default `ExceptionlessClient` instance: ```javascript var client = require("exceptionless").ExceptionlessClient.default; client.config.apiKey = "API_KEY_HERE"; ``` - You can create a new instance of the `ExceptionlessClient` class and specify the `apiKey`, `serverUrl` or [configuration object](https://github.com/exceptionless/Exceptionless.JavaScript/blob/master/packages/core/src/configuration/IConfigurationSettings.ts): ```javascript var exceptionless = require("exceptionless"); var client = new exceptionless.ExceptionlessClient("API_KEY_HERE"); // or with an api key and server url var client = new exceptionless.ExceptionlessClient("API_KEY_HERE", "http://localhost:5000"); // or with a configuration object var client = new exceptionless.ExceptionlessClient({ apiKey: "API_KEY_HERE", serverUrl: "http://localhost:5000", submissionBatchSize: 100 }); ``` ### Submitting Events and Errors Once configured, Exceptionless.js will automatically submit any unhandled exceptions that happen in your application to the Exceptionless server. The following sections will show you how to manually submit different event types as well as customize the data that is sent: #### Submitting Events You may also want to submit log messages, feature usage data or other kinds of events. You can do this very easily with the fluent API: ```javascript // Browser var client = exceptionless.ExceptionlessClient.default; // Node.js // var client = require("exceptionless").ExceptionlessClient.default; client.submitLog("Logging made easy"); // You can also specify the log source and log level. // We recommend specifying one of the following log levels: Trace, Debug, Info, Warn, Error client.submitLog("app.logger", "This is so easy", "Info"); client.createLog("app.logger", "This is so easy", "Info").addTags("Exceptionless").submit(); // Submit feature usages client.submitFeatureUsage("MyFeature"); client.createFeatureUsage("MyFeature").addTags("Exceptionless").submit(); // Submit a 404 client.submitNotFound("/somepage"); client.createNotFound("/somepage").addTags("Exceptionless").submit(); // Submit a custom event type client.submitEvent({ message = "Low Fuel", type = "racecar", source = "Fuel System" }); ``` #### Manually submitting Errors In addition to automatically sending all unhandled exceptions, you may want to manually send exceptions to the service. You can do so by using code like this: ```javascript // Browser var client = exceptionless.ExceptionlessClient.default; // Node.js // var client = require("exceptionless").ExceptionlessClient.default; try { throw new Error("test"); } catch (error) { client.submitException(error); } ``` #### Sending Additional Information You can easily include additional information in your error reports using the fluent [event builder API](https://github.com/exceptionless/Exceptionless.JavaScript/blob/master/packages/core/src/EventBuilder.ts). ```javascript // Browser var client = exceptionless.ExceptionlessClient.default; // Node.js // var client = require("exceptionless").ExceptionlessClient.default; try { throw new Error("Unable to create order from quote."); } catch (error) { client.createException(error) // Set the reference id of the event so we can search for it later (reference:id). // This will automatically be populated if you call client.config.useReferenceIds(); .setReferenceId("random guid") // Add the order object (the ability to exclude specific fields will be coming in a future version). .setProperty("Order", order) // Set the quote number. .setProperty("Quote", 123) // Add an order tag. .addTags("Order") // Mark critical. .markAsCritical() // Set the coordinates of the end user. .setGeo(43.595089, -88.444602) // Set the user id that is in our system and provide a friendly name. .setUserIdentity(user.Id, user.FullName) // Submit the event. .submit(); } ``` ## Self hosted options The Exceptionless client can also be configured to send data to your self hosted instance. This is configured by setting the `serverUrl` setting to point to your Exceptionless instance: #### Browser You can set the `serverUrl` on the default `ExceptionlessClient` instance: ```javascript exceptionless.ExceptionlessClient.default.config.serverUrl = "http://localhost:5000"; ``` #### Node.js You can set the `serverUrl` on the default `ExceptionlessClient` instance: ```javascript var client = require("exceptionless.node").ExceptionlessClient.default; client.config.serverUrl = "http://localhost:5000"; ``` ### General Data Protection Regulation By default the Exceptionless Client will report all available metadata including potential PII data. You can fine tune the collection of information via Data Exclusions or turning off collection completely. Please visit the [docs](https://exceptionless.com/docs/clients/javascript/client-configuration/#general-data-protection-regulation) for detailed information on how to configure the client to meet your requirements. ## Support If you need help, please contact us via in-app support, [open an issue](https://github.com/exceptionless/Exceptionless.JavaScript/issues/new) or [join our chat on Discord](https://discord.gg/6HxgFCx). Weâre always here to help if you have any questions! ## Contributing If you find a bug or want to contribute a feature, feel free to create a pull request. 1. Clone this repository: ```sh git clone https://github.com/exceptionless/Exceptionless.JavaScript.git ``` 2. Install [Node.js](https://nodejs.org). Node is used for building and testing purposes. 3. Install [gulp](http://gulpjs.com) and the development dependencies using [npm](https://www.npmjs.com). ```sh npm install ``` 4. Build the project by running the following gulp command. ```sh npm run build ``` 5. Test the project by running the following gulp command. ```sh npm run test ``` During development, you can use relative paths to require Exceptionless, e.g. `require("./dist/exceptionless.node.js")` when you are running Node.js from the git root directory. ## Thanks Thanks to all the people who have contributed! [](https://github.com/exceptionless/Exceptionless.JavaScript/graphs/contributors)