A library for logging errors remotely in an error logger platform. To get started you need to create a developer account in errors tracer platform and start monitoring your production errors.
npm install --save @errors-tracer/react
or
yarn add @errors-tracer/react
You can use the error boundary for each development and production environments to separately monitor your apps.
To get started you need to create an application under your organization and activate it, then go to credentials tab and copy appKey
and orgKey
and make sure which environment you are using.
Each application has a development and production credentials, the developer might need to setup an env variables in the project and then specify each credentials for the proper env.
The credentials object includes two values and you can get them from the platform.
{
orgKey: 'YOUR_ORGANIZATION_KEY',
appKey: 'YOUR_APPLICATION_KEY'
}
It's optional to pass the credentials object depends on which you want to use the library as an error boundary or a remote error logger.
You can send an additional data object as well, this option will provide you with a better debugging capability and you might get benefits of it for example you can send the username or email to know exactly the user who had the issue.
You can pass anything as an object such as email, phone number, user's first and last names.
const additionalData = {
email: 'customer@email.com'
}
import React from 'react'
import ReactDOM from 'react-dom'
import { ErrorBoundary } from '@errors-tracer/react'
const credentials = {
orgKey: YOUR_ORGANIZATION_KEY,
appKey: YOUR_APPLICATION_KEY
}
// you can pass the additionalData prop to the ErrorBoundary
ReactDOM.render(
<ErrorBoundary additionalData={/*pass your object*/} credentials={credentials} fallback={<FallbackComponent />}>
<App />
</ErrorBoundary>,
document.getElementById('root')
)
In your _app.tsx file import the ErrorBoundary Component from @errors-tracer/react
import type { AppProps } from 'next/app'
import { ErrorBoundary } from '@errors-tracer/react'
export default function App({ Component, pageProps }: AppProps) {
const credentials = {
orgKey: YOUR_ORGANIZATION_KEY,
appKey: YOUR_APPLICATION_KEY
}
return (
<ErrorBoundary credentials={credentials} fallback={<FallbackComponent />}>
<Component {...pageProps} />
</ErrorBoundary>
)
}
MIT © Elsiddig Ahmed