![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@ag.common/analytics
Advanced tools
The `@ag.common/analytics` package aims to coordinate analytics capture across the export service. We ship the correct tracking codes out of the box for Hotjar and Google Analytics so that everything is reported to the right place.
The @ag.common/analytics
package aims to coordinate analytics capture across the export service. We ship the correct tracking codes out of the box for Hotjar and Google Analytics so that everything is reported to the right place.
It also provides convenient helpers for reporting custom events and managing data contexts.
See the storybook for more examples.
yarn add @ag.common/analytics
import Script from 'next/script';
import { Analytics } from '@ag.common/analytics';
function App() {
return (
<Analytics scriptComponents={{ Script }}>
<YourApplication />
</Analytics>
);
}
Hotjar and Google Analytics are enabled by default but can be turned off one by one.
import Script from 'next/script';
import { Analytics } from '@ag.common/analytics';
function App() {
return (
<Analytics
scriptComponents={{ Script }}
hotjar={false}
googleAnalytics={false}
>
<YourApplication />
</Analytics>
);
}
Events are reported to Google Analytics by default
import Script from 'next/script';
import { Analytics, useAnalytics } from '@ag.common/analytics';
function TrackingButton() {
const { trackEvent } = useAnalytics();
return (
<Button
onClick={() => {
trackEvent('login');
}}
>
Log in
</Button>
);
}
function App() {
return (
<Analytics scriptComponents={{ Script }}>
<p>Log in to get started</p>
<TrackingButton />
</Analytics>
);
}
You can report to an alternative analytics provider by providing an onEvent
callback
import Script from 'next/script';
import { Analytics } from '@ag.common/analytics';
function App() {
return (
<Analytics
scriptComponents={{ Script }}
onEvent={(name, data) => logger.info(name, data)}
>
<YourApplication />
</Analytics>
);
}
FAQs
The `@ag.common/analytics` package aims to coordinate analytics capture across the export service. We ship the correct tracking codes out of the box for Hotjar and Google Analytics so that everything is reported to the right place.
The npm package @ag.common/analytics receives a total of 2 weekly downloads. As such, @ag.common/analytics popularity was classified as not popular.
We found that @ag.common/analytics demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.