Browser library to report errors to GCP
npm install @apolitical/error-reportingBrowser (and Node.js) library to report errors to GCP
Requires the following to run:
- [node.js][node] 16.13.0+
- [yarn][yarn]
[node]: https://nodejs.org/en/download/
[yarn]: https://classic.yarnpkg.com/en/docs/install
Install with yarn:
``sh`
yarn add @apolitical/error-reporting
In the project directory, you can run:
Runs the test (and the interactive mode can be enabled with --watchAll).
Builds the library for production to the build folder.
It correctly bundles the code on production mode and optimizes the build for the best performance.
Publishes the library to NPM.
The recommended way to use @apolitical/error-reporting is to set the context with the appropriate parameters:
`js
const { setContext, reportError } = require('@apolitical/error-reporting');
setContext({
origin: 'some-url',
accessToken: 'some-token',
serviceName: 'some-service'
});
`
And then, you can report the error to GCP like this:
`js``
await reportError(new Error('Something went wrong'));