Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
nextjs-google-analytics
Advanced tools
Google Analytics for Next.js, based on the official next.js example with-google-analytics.
It will only be loaded on production
environments.
npm install --save nextjs-google-analytics
Add the ``GoogleAnalyticscomponents inside the
Head` to a custom document, this will take care of including the necessary scripts:
// pages/_document.js
import Document, { Html, Head, Main, NextScript } from "next/document";
import { GoogleAnalytics } from "nextjs-google-analytics";
export default class MyDocument extends Document {
render() {
return (
<Html>
<Head>
<GoogleAnalytics gaMeasurementId={"YOUR MEASUREMENT ID"} />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
Call the usePageView
hook inside _app.js
:
// /pages/_app.js
import { useEffect } from 'react'
import { useRouter } from 'next/router'
import { usePageView } from "nextjs-google-analytics";
const App = ({ Component, pageProps }) => {
usePageView();
const router = useRouter()
return <Component {...pageProps} />
}
export default
You can import the event
function to track a custom event:
import { useState } from "react";
import Page from "../components/Page";
import { event } from "nextjs-google-analytics";
export function Contact() {
const [message, setMessage] = useState("");
const handleInput = (e) => {
setMessage(e.target.value);
};
const handleSubmit = (e) => {
e.preventDefault();
event({
action: "submit_form",
category: "Contact",
label: this.state.message,
});
setState("");
};
return (
<Page>
<h1>This is the Contact page</h1>
<form onSubmit={handleSubmit}>
<label>
<span>Message:</span>
<textarea onChange={handleInput} value={message} />
</label>
<button type="submit">submit</button>
</form>
</Page>
);
}
FAQs
Google Analytics for Next.js
The npm package nextjs-google-analytics receives a total of 18,829 weekly downloads. As such, nextjs-google-analytics popularity was classified as popular.
We found that nextjs-google-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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.