
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@flashcatcloud/browser-rum-react
Advanced tools
This package provides React and React ecosystem integrations for Flashcat Browser RUM.
See the dedicated Datadog documentation for more details.
npm install @flashcatcloud/browser-rum @flashcatcloud/browser-rum-react
To enable the React integration, pass the reactPlugin to the plugins option of the flashcatRum.init method:
import { flashcatRum } from '@flashcatcloud/browser-rum'
import { reactPlugin } from '@flashcatcloud/browser-rum-react'
flashcatRum.init({
applicationId: ...,
clientToken: ...,
...
plugins: [reactPlugin()],
})
To track React component rendering errors, use one of the following:
ErrorBoundary component (see React documentation) that catches errors and reports them to Flashcat.ErrorBoundary component.ErrorBoundary usageimport { ErrorBoundary } from '@flashcatcloud/browser-rum-react'
function App() {
return (
<ErrorBoundary fallback={ErrorFallback}>
<MyComponent />
</ErrorBoundary>
)
}
function ErrorFallback({ resetError, error }: { resetError: () => void; error: unknown }) {
return (
<p>
Oops, something went wrong! <strong>{String(error)}</strong> <button onClick={resetError}>Retry</button>
</p>
)
}
ErrorBoundaryimport { addReactError } from '@flashcatcloud/browser-rum-react'
class MyErrorBoundary extends React.Component {
componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
addReactError(error, errorInfo)
}
render() {
...
}
}
react-router v6 allows you to declare routes using the following methods:
createMemoryRouter, createHashRouter, or createBrowserRouter functions.useRoutes hook.Routes component.To track route changes with the Flashcat RUM Browser SDK, first initialize the reactPlugin with the router: true option, then replace those functions with their equivalent from @flashcatcloud/browser-rum-react/react-router-v6. Example:
import { RouterProvider } from 'react-router-dom'
import { flashcatRum } from '@flashcatcloud/browser-rum'
import { reactPlugin } from '@flashcatcloud/browser-rum-react'
// Use "createBrowserRouter" from @flashcatcloud/browser-rum-react/react-router-v6 instead of react-router-dom:
import { createBrowserRouter } from '@flashcatcloud/browser-rum-react/react-router-v6'
flashcatRum.init({
...
plugins: [reactPlugin({ router: true })],
})
const router = createBrowserRouter([
{
path: '/',
element: <Root />,
...
},
])
ReactDOM.createRoot(document.getElementById('root')).render(<RouterProvider router={router} />)
FAQs
Unknown package
The npm package @flashcatcloud/browser-rum-react receives a total of 15 weekly downloads. As such, @flashcatcloud/browser-rum-react popularity was classified as not popular.
We found that @flashcatcloud/browser-rum-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.