
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Facilitates the usage of Google Tag Manager. Supports Google Tag Manager Server Side loading.
google-tag-manager
Facilitates the usage of Google Tag Manager. Supports Google Tag Manager Server Side loading.
const gtmConfig = {
gtmId: 'GTM-1234567', // required
serverSideDomain: 'data.mydomain.com', // optional
resetDataLayerObjects: true, // optional
sanitizeDataLayerObjects: true, // optional
defer: true // optional
}
const gtm = new GTM(gtmConfig);
Option | Required? | Type | Default Value | Description |
---|---|---|---|---|
gtmId | Yes | String | - | Google Tag Manager Client Side container ID |
serverSideDomain | No | String | - | Google Tag Manager Server Side domain. If provided, the google tag manager client side library will be loaded from your GTM server side container. In order for this to work properly, you must have the GTM Client Side setted up as a client on your GTMss container, along with the gtmId you want to load. |
resetDataLayerObjects | No | Boolean | false | If true all the last dataLayer object properties will be pushed again with null value. This helps to keep the dataLayer parameters controlled across different pushes. It will only take effect if an object is pushed |
sanitizeDataLayerObjects | No | Boolean | false | If true it sanitizes the object values. It is a good practice to normalize characters to ease future data treatments. It will only take effect if an object is pushed |
defer | No | Boolean | False | If true it will load the google tag manager script as a defer script instead of async |
const gtm = new GTM(gtmConfig);
gtm.initialize() // load the container
const dataLayerObject = {
event: 'click',
element: 'cta-bottom',
text: 'buy-now'
}
gtm.dataLayerPush(dataLayerObject) // Push the object to the dataLayer. The object can have any tyoe.
// using the optional second parameter
gtm.dataLayerPush(dataLayerObject, true) // push the object to the dataLayer and then push another object reseting the properties first sent. It has priority over the initial configuration 'resetDataLayerObjects'.
if (userOptedOut) {
gtm.remove() // remove the GTM container
}
Method | Parameters | Description |
---|---|---|
initialize | - | Load the Google Tag Manager Client Side container |
dataLayerPush | object, resetPush | Pushes the object to the dataLayer. If the second parameter is passed, it overwrites the initial resetDataLayerObjects configuration for this push |
remove | - | Removes the container |
In order to collaborate, please link an issue with the pull request.
All the tests must pass in order to merge on master
.
FAQs
Facilitates the usage of Google Tag Manager. Supports Google Tag Manager Server Side loading.
We found that gtm-ss 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.