Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
gatsby-plugin-gtag-redactjs
Advanced tools
RedactJS-friendly Gatsby plugin to add Google Analytics gtag.js (replacement for analytics.js) to a site. Includes Outbound Links.
Does the same thing as gatsby-plugin-google-analytics, but instead of adding deprecated analytics.js script, it uses gtag.js. Includes Outbound Link module.
npm install --save gatsby-plugin-gtag
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-gtag`,
options: {
// your google analytics tracking id
trackingId: `UA-XXXXXXXX-X`,
// Puts tracking script in the head instead of the body
head: false,
// enable ip anonymization
anonymize: true,
},
},
],
}
import { OutboundLink } from 'gatsby-plugin-gtag'
Use like any other anchor tag in your component:
<OutboundLink href='yourwebsite.example'>Check out this site!</OutboundLink>
Puts tracking script in the head instead of the body. Default is false (render in the body)
Adds anonymize_ip
flag when calling gtag
. More info
here.
By default gatsby-plugin-gtag
will only load and run google analytics when process.env.NODE_ENV === 'production'
.
To enable gtag in development mode set the environment variable GATSBY_GTAG_DEBUG=true gatsby develop
.
MIT
FAQs
RedactJS-friendly Gatsby plugin to add Google Analytics gtag.js (replacement for analytics.js) to a site. Includes Outbound Links.
The npm package gatsby-plugin-gtag-redactjs receives a total of 6 weekly downloads. As such, gatsby-plugin-gtag-redactjs popularity was classified as not popular.
We found that gatsby-plugin-gtag-redactjs 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.