You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
Not sure which library this should go under. But I use vue.js and raven-js for the client side errors. I also use raven for node to capture server errors. But I am also doing SSR rendering with the bundle renderer stream from https://www.npmjs.com/package/vue-server-renderer
Currently if there is an error on the stream i capture it using Raven.captureException(error) but it would be nice to get the same vue context that we get for browser in the ssr app.
The text was updated successfully, but these errors were encountered:
This makes sense smitt04, https://github.com/getsentry/raven-js/blob/master/plugins/vue.js is the entire raven-js vue plugin and as you can see it's very simple - you should be able to accomplish something similar with raven-node's APIs as a quick individual solution to get componentName and propsData. I can think more about what that might look like, and @LewisJEllis should have a more concrete idea as well.
Not sure which library this should go under. But I use vue.js and raven-js for the client side errors. I also use raven for node to capture server errors. But I am also doing SSR rendering with the bundle renderer stream from https://www.npmjs.com/package/vue-server-renderer
Currently if there is an error on the stream i capture it using
Raven.captureException(error)
but it would be nice to get the same vue context that we get for browser in the ssr app.The text was updated successfully, but these errors were encountered: