core 3.0.6-alpha.0.20
Install from the command line:
Learn more about npm packages
$ npm install @exceptionless/core@3.0.6-alpha.0.20
Install via package.json:
"@exceptionless/core": "3.0.6-alpha.0.20"
About this version
This package contains the default implementations that all other JS clients build upon. You can use it directly but we recommend using one of the packages below which automatically wire up to platform specific error handlers and platform specific plugins.
@exceptionless/angularjs
@exceptionless/browser
@exceptionless/node
@exceptionless/react
@exceptionless/vue
To use this package, your must be using ES6 and support ESM modules.
npm install @exceptionless/core --save
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/core";
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");
});
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.
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!
Details
- core
- exceptionless
- 7 months ago
- Apache-2.0
- 6 dependencies
Assets
- core-3.0.6-alpha.0.20.tgz
Download activity
- Total downloads 0
- Last 30 days 0
- Last week 0
- Today 0