react-rum 0.1.8
Install from the command line:
Learn more about npm packages
$ npm install @baselime/react-rum@0.1.8
Install via package.json:
"@baselime/react-rum": "0.1.8"
About this version
Real User Monitoring for React
npm i @baselime/react-rumAdd the BaselimeRum Component at the root of your application
Create a dataset in baselime for the data
Generate a Baselime Public API Key and add it as a property
function Page({ child }) {
return (
<BaselimeRum apiKey={apiKey} service="my-app" enableWebVitals enableLocal>
{child}
</BaselimeRum>)
}