
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@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 15 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 5 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.