
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.