![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
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.