![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
gtm-module
Advanced tools
Facilitates the usage of Google Tag Manager. Supports Google Tag Manager Server Side loading.
gtm-module
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.
// 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
.
1.0.6
-> Increase tests coverage.
FAQs
Facilitates the usage of Google Tag Manager. Supports Google Tag Manager Server Side loading.
The npm package gtm-module receives a total of 25 weekly downloads. As such, gtm-module popularity was classified as not popular.
We found that gtm-module 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.