Skip to content

gridwalk/gulp-gtm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-gtm

Inject Google Tag Manager (GTM) script into HTML with Gulp.

Install

$ npm install gulp-gtm --save-dev

Example

Make sure to enter the correct container ID.

var gulp = require('gulp')
var gtm  = require('gulp-gtm')

// Usage:
gulp.task('gtm', function(){
	gulp.src('./index.html')
	.pipe(gtm({containerId: 'GTM-1234'}))
	.pipe(gulp.dest('./'));
});

The following code will be insterted directly after the opening body tag:

<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-1234"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-1234');</script>
<!-- End Google Tag Manager -->

This snippet is directly from Google Tag Manager's site.

About

Inject Google Tag Manager (GTM) script into HTML <head> with Gulp.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published