Exceptionless.JavaScript
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!
<script src="https://cdn.jsdelivr.net/npm/exceptionless@v1.6.4/dist/exceptionless.min.js"></script>
<script>
var client = exceptionless.ExceptionlessClient.default;
client.config.apiKey = 'API_KEY_HERE';
try {
throw new Error('test');
} catch (error) {
client.submitException(error);
}
</script>
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:
<script src="https://cdn.jsdelivr.net/npm/exceptionless@v1.6.4/dist/exceptionless.min.js"></script>
-
Bower:
- Install the package by running
bower install exceptionless
. - Add the script to your HTML page:
<script src="bower_components/exceptionless/dist/exceptionless.min.js"></script>
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:
- Install the package by running
npm install exceptionless --save
. - Require the Exceptionless.js module in your application:
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:
<script src="bower_components/exceptionless/dist/exceptionless.min.js?apiKey=API_KEY_HERE"></script>
-
You can set the apiKey
on the default ExceptionlessClient
instance:
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:
var client = new exceptionless.ExceptionlessClient('API_KEY_HERE');
var client = new exceptionless.ExceptionlessClient('API_KEY_HERE', 'http://localhost:5000');
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:
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:
var exceptionless = require('exceptionless');
var client = new exceptionless.ExceptionlessClient('API_KEY_HERE');
var client = new exceptionless.ExceptionlessClient('API_KEY_HERE', 'http://localhost:5000');
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:
var client = exceptionless.ExceptionlessClient.default;
client.submitLog('Logging made easy');
client.submitLog('app.logger', 'This is so easy', 'Info');
client.createLog('app.logger', 'This is so easy', 'Info').addTags('Exceptionless').submit();
client.submitFeatureUsage('MyFeature');
client.createFeatureUsage('MyFeature').addTags('Exceptionless').submit();
client.submitNotFound('/somepage');
client.createNotFound('/somepage').addTags('Exceptionless').submit();
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:
var client = 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.
var client = exceptionless.ExceptionlessClient.default;
try {
throw new Error('Unable to create order from quote.');
} catch (error) {
client.createException(error)
.setReferenceId('random guid')
.setProperty("Order", order)
.setProperty("Quote", 123)
.addTags("Order")
.markAsCritical()
.setGeo(43.595089, -88.444602)
.setUserIdentity(user.Id, user.FullName)
.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:
exceptionless.ExceptionlessClient.default.config.serverUrl = 'http://localhost:5000';
Node.js
You can set the serverUrl
on the default ExceptionlessClient
instance:
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
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 or join our chat on Discord. 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.
-
Clone this repository:
git clone https://github.com/exceptionless/Exceptionless.JavaScript.git
-
Install Node.js. Node is used for building and testing purposes.
-
Install gulp and the development dependencies using npm.
npm install
-
Build the project by running the following gulp command.
npm run build
-
Test the project by running the following gulp command.
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!