Exceptionless.JavaScript icon indicating copy to clipboard operation
Exceptionless.JavaScript copied to clipboard

Exceptionless JavaScript client

Results 32 Exceptionless.JavaScript issues
Sort by recently updated
recently updated
newest added

When trying to import the @exceptionless/react package in Next.js, the following error occurs: ``` SyntaxError: Named export 'fromError' not found. The requested module 'stacktrace-js' is a CommonJS module, which may...

bug

We should work good with universal apps as well as ensure we work good with web pack :) https://github.com/erikras/react-redux-universal-hot-example

enhancement

I installed this package on the React Native app as documented like this : https://github.com/erikras/react-redux-universal-hot-example/compare/master...niemyjski:master, but on ios/android devices it couldn't work, exceptionlessClient is null, and I tried import *...

enhancement
help wanted

## Browser - [x] Can submit log - [x] Can submit error - [x] Errors stacking - [x] Unhandled errors sent to Exceptionless ## React - [x] Can submit log...

```js const user: IUserInfo = $ExceptionlessClient.config.defaultData["@user"]; if (user) { $ExceptionlessClient.submitSessionEnd(user.identity); } ```

enhancement

Using the JavaScript client if an Exception is submitted it isn't sent immediately to Exceptionless, instead it waits for the next 'Processing queue...' event to fire. While testing this we...

bug
help wanted

Would it be possible to have breadcrumbs? The concept of breadcrumbs is rather than shipping log messages constantly incase some thing happens. Instead logs messages are buffered and the last...

enhancement
question

We need to send in events synchronously to ensure unit tests calling process(true) works as well as giving us the ability to submit events on the unload event. https://github.com/exceptionless/Exceptionless.JavaScript/issues/59

enhancement

We need to update the samples to show how to use the client in es6 (import syntax) and add a angular4 sample :). The closest sample we have is our...

I'm having a problem getting my log and error messages through to the server from my local machine. I have a simple test script that is sending a sample error...