
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
react-gtm-ts
Advanced tools
This is a library to facilitate the implementation of Google Tag Manager.
This is a library to facilitate the implementation of Google Tag Manager.
npm install react-gtm-ts
or
yarn add react-gtm-ts
Add ReactTagManager.init passing GTM code in app or _app (nextjs):
import { ReactTagManager } from 'react-gtm-ts';
import { NextPageWithLayout } from '@Core/types/next';
import type { AppProps } from 'next/app';
type AppPropsWithLayout = AppProps & {
Component: NextPageWithLayout;
};
ReactTagManager.init({
code: 'GTM-XXXX', // GTM Code
debug: false, // debug mode (default false)
performance: false, // starts GTM only after user interaction (improve initial page load)
});
function MyApp({ Component, pageProps }: AppPropsWithLayout) {
return <Component {...pageProps} />;
}
export default MyApp;
Now just use the ReactTagManager.action for the actions passing the event and the variables (optional)
import { ReactTagManager } from 'react-gtm-ts';
import { NextPageWithLayout } from '@Core/types/next';
const Home: NextPageWithLayout = () => {
return (
<div>
<button
type="button"
onClick={() => {
ReactTagManager.action({
event: 'click_all_button',
clickText: 'login',
});
}}
>
login
</button>
</div>
);
};
export default Home;
To learn more about Google Tag Manager, take a look at the following resource documentation.
FAQs
This is a library to facilitate the implementation of Google Tag Manager.
The npm package react-gtm-ts receives a total of 3,931 weekly downloads. As such, react-gtm-ts popularity was classified as popular.
We found that react-gtm-ts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.