
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
grunt-templatize
Advanced tools
Super simple grunt task to convert an HTML file into a Javascript function
Super simple grunt task to convert one or more handlebars-like template files into a Javascript module. Supports AMD, commonjs, and namespaced module formats.
Templates support iteration using {{#each items}}{{/each}} markup. For this to work, generated templates assume you have _.map available, either via lodash, underscore, or other means. Configuration options are available to use your own map-like function.
First, make sure you have node.js and npm properly installed and working. You will also need to have grunt-cli installed globally:
npm install grunt-cli -g
Create a new project folder with package.json file and install dependencies from npm:
mkdir example
cd example
npm init
npm install grunt grunt-templatize --save-dev
mkdir templates
Create Gruntfile.js in the project folder root:
module.exports = function (grunt) {
'use strict';
grunt.loadNpmTasks('grunt-templatize');
grunt.initConfig({
templatize: {
app: {
src: 'templates/*.tmplz',
dest: 'dist/templates.js'
}
}
});
grunt.registerTask('default', ['templatize']);
};
Create the following template files:
templates/header.tmplz
<header>
<h1>{{title}}</h1>
<div>{{body}}</div>
</header>
templates/footer.tmplz
<footer>
<a src="{{url}}">{{text}}</a>
</footer>
Run the following command:
grunt templatize
This will generate dist/templates.js using the AMD module format with the following content:
define(['lodash'],function(_){var p={footer:function(m0){return '<footer><a src="'+m0.url+'">'+m0.text+'</a></footer>';},
header:function(m0){return '<header><h1>'+m0.title+'</h1><div>'+m0.body+'</div></header>';}};return p;});
Here is a beautified version of dist/templates.js:
define( ['lodash'], function (_) {
var p = {
footer: function (m0) {
return '<footer><a src="'+m0.url+'">'+m0.text+'</a></footer>';
},
header: function (m0) {
return '<header><h1>'+m0.title+'</h1><div>'+m0.body+'</div></header>';
}
};
return p;
});
This AMD module can be imported into your application and the template can be compiled with code similar to this:
define(['templates'],function(templates) {
'use strict';
var headerModel = {
title: 'Hello',
body: 'World'
};
var header = templates.header(headerModel);
var footerModel = {
text: 'Privacy Policy',
url: '/privacy.html'
};
var footer = templates.footer(footerModel);
});
The module format of the destination file can be changed using a format of amd, commonjs, or namesapce. This is configured like this:
templatize: {
app: {
options: {
format: 'commonjs'
},
src: 'templates/*.tmplz',
dest: 'dist/templates.js'
}
}
Results using commonjs format:
var _=require('lodash');var p={footer:function(m0){return '<footer><a src="'+m0.url+'">'+m0.text+'</a></footer>';},
header:function(m0){return '<header><h1>'+m0.title+'</h1><div>'+m0.body+'</div></header>';}};module.exports=p;
var _ = require('lodash');
var p = {
footer: function (m0) {
return '<footer><a src="'+m0.url+'">'+m0.text+'</a></footer>';
},
header: function (m0) {
return '<header><h1>'+m0.title+'</h1><div>'+m0.body+'</div></header>';
}
};
module.exports=p;
Results using namespace format:
!function(root,_){root.templatize=root.templatize||{};var p=root.templatize;root.templatize.footer=function(m0){return '<footer><a src="'+m0.url+'">'+m0.text+'</a></footer>';};
root.templatize.header=function(m0){return '<header><h1>'+m0.title+'</h1><div>'+m0.body+'</div></header>';};}(this,_);
!function(root,_){
root.templatize = root.templatize || {};
var p = root.templatize;
root.templatize.footer = function(m0) {
return '<footer><a src="'+m0.url+'">'+m0.text+'</a></footer>';
};
root.templatize.header = function(m0) {
return '<header><h1>'+m0.title+'</h1><div>'+m0.body+'</div></header>';
};
}(this,_);
Support for multiple output target destination files:
grunt.initConfig({
templatize: {
app: {
src: 'templates/app/*.tmplz',
dest: 'dist/js/app-templates.js'
},
components: {
src: 'templates/components/*.tmplz',
dest: 'dist/js/components-templates.js'
}
}
});
Full configuration including default values:
grunt.initConfig({
templatize: {
app: {
// Glob of all source template files
src: 'templates/app/*.tmplz',
// Location of generated output file
dest: 'dist/js/app-templates.js',
// Options to pass to grunt-templatize
options: {
// Module format for output file. Possible values include
// 'amd', 'commonjs', 'namespace'
format: 'amd',
// Prefix at top of each output file
prefix: 'define([\'lodash\'],function(_){',
// Prefix before first source file
firstPrefix: 'var p={',
// Prefix before each source file except the first
eachPrefix: '',
// Output between key (source filename) and function
eachMiddle: ':',
// Suffix after each source file except the last
eachSuffix: ',',
// Suffix after last source file
lastSuffix: '};return p;',
// Suffix at end of each output file
suffix: '});'
// Options to pass to the templatize library
templatize: {
// Options to use with the HTML Minifier
htmlmin: {
removeComments: true,
removeCommentsFromCDATA: true,
collapseWhitespace: true,
collapseBooleanAttributes: true,
removeAttributeQuotes: false,
removeRedundantAttributes: false,
useShortDoctype: true,
removeEmptyAttributes: false,
removeOptionalTags: false
},
// Set htmlminEnable to true to always minify html
htmlminEnable: false,
// Set htmlminMultiLines to true to minify files with more than one line
htmlminMultiLines: false
}
}
}
}
});
By default, grunt-templatize will minify all of your HTML templates.
If you have templates that contain ill-formed HTML, as is often the case, then using the HTML Minifier feature will break your templates. This is because the minifier also makes the HTML well-formed by adding missing closing tags and removing extraneous closing tags.
To turn off the HTML minifier, set htmlminEnable: false. Note that the option can be set differently for each target, as in this example:
grunt.initConfig({
templatize: {
app: {
src: 'templates/app/*.tmplz',
dest: 'dist/js/app-templates.js'
},
components: {
options: {
templatize: {
htmlminEnable: false
}
},
src: 'templates/components/*.tmplz',
dest: 'dist/js/components-templates.js'
}
}
});
In many cases, HTML fragment templates are very short and can live on a single line. By setting htmlminMultiLines: true, any single-line templates will not be minified, but any templates that contain more than one line will be minified.
grunt.initConfig({
templatize: {
components: {
options: {
templatize: {
htmlminEnable: false,
htmlminMultiLines: true
}
},
src: 'templates/components/*.tmplz',
dest: 'dist/js/components-templates.js'
}
}
});
Any option can also be set for all targets using this style of options configuration:
templatize: {
options: {
templatize: {
htmlminEnable: false
}
},
app: {
src: 'templates/*.tmplz',
dest: 'dist/templates.js'
}
}
Iteration is supported using {{#each item}} and {{/each}} tags in your templates. When these tags are used, the templatized output includes calls to the _.map() function. If you are using Underscore or Lodash, this is available out of the box. If not, any implementation that is API compatible with the Underscore version should work.
Note that you may need to provide a custom prefix and suffix to use iteration effectively. For instance, to use Underscore instead of Lodash in an AMD module, you could use this configuration:
templatize: {
options: {
prefix: 'define(["underscore"],function(_){'
}
}
Here is an example of using the {{#each}} iterator:
<h1>{{title}}</h1>
<ul>
{{#each items}}
<li>
<span>{{name}}</span>
<span>{{../foo}}</span>
</li>
{{/each}}
</ul>
This template should be given an object with this structure:
{
title: 'This is the title',
foo: 'FOO',
items: [
{ name: 'Item A' },
{ name: 'Item B' }
]
}
Note that templatize supports nested {{#each}}'s, and within an inner scope, you can reference properties in the outer scope. This is done by using ../foo notation. You can step up multiple scope levels by repeating the dots, i.e. ../../../foo.
Templatize also supports template partials using the {{>partial}} directive. Any template can be used as a partial and can be embedded within the output of another template. The model passed into a partial is the current context at the time the partial is called.
Here is an example of using a partial:
list.tmplz:
<h1>{{title}}</h1>
<ul>
{{#each items}}
{{>listitem}}
{{/each}}
</ul>
listitem.tmplz:
<li>
<span>{{name}}</span>
</li>
Note that you cannot reference properties in the calling function from within a partial. You can only access properties on the model that was passed to the partial.
FAQs
Super simple grunt task to convert an HTML file into a Javascript function
We found that grunt-templatize 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.