@exceptionless/node

JavaScript client for Exceptionless

Usage no npm install needed!

<script type="module">
  import exceptionlessNode from 'https://cdn.skypack.dev/@exceptionless/node';
</script>

README

Exceptionless NodeJS

Using Exceptionless in the NodeJS environment is similar to using it in other JavaScript environments.

Getting Started

To use this package, your must be using ES6 and Node 15+.

Installation

npm install @exceptionless/node --save

Configuration

While your app is starting up, you should call startup on the Exceptionless client. This ensures the client is configured and automatic capturing of unhandled errors occurs.

import { Exceptionless } from "@exceptionless/node";

await Exceptionless.startup(c => {
  c.apiKey = "API_KEY_HERE";
  c.setUserIdentity("12345678", "Blake");

  // set some default data
  c.defaultData["mydata"] = {
    myGreeting: "Hello World"
  };

c.defaultTags.push("Example", "JavaScript", "Node");
});

Once that's done, you can use the Exceptionless client anywhere in your app by importing Exceptionless followed by the method you want to use. For example:

await Exceptionless.submitLog("Hello world!");

Please see the docs for more information on configuring the client.

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!