Converts AngularJS templates to JavaScript
This plugin requires Grunt ~0.4.0
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-html2js --save-dev
One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-html2js');
Angular-JS normally loads templates lazily from the server as you reference them in your application (via ng-include
, routing configuration or other mechanism). Angular caches the source code for each template so that subsequent references do not require another server request. However, if your application is divided into many small components, then the initial loading process may involve an unacceptably large number of additional server requests.
This plugin converts a group of templates to JavaScript and assembles them into an Angular module that primes the cache directly when the module is loaded. You can concatenate this module with your main application code so that Angular does not need to make any additional server requests to initialize the application.
Note that this plugin does not compile the templates. It simply caches the template source code.
By default, this plugin assumes you are following the naming conventions and build pipeline of the [angular-app][https://github.com/angular-app/angular-app] demo application.
In your project's Gruntfile, add a section named html2js
to the data object passed into grunt.initConfig()
.
This simplest configuration will assemble all templates in your src tree into a module named templates-main
, and write the JavaScript source for the module to tmp/template.js
:
grunt.initConfig({
html2js: {
options: {
// custom options, see below
},
main: {
src: ['src/**/*.tpl.html'],
dest: 'tmp/templates.js'
},
},
})
Assuming you concatenate the resulting file with the rest of your application code, you can then specify the module as a dependency in your code:
angular.module('main', ['templates-main'])
.config(['$routeProvider', function ($routeProvidear) {
$routeProvider.when('/somepath', {
templateUrl:'some/template.tpl.html',
Note that you should use relative paths to specify the template URL, to match the keys by which the template source is cached.
The dest
property must be a string. If it is an array, Grunt will fail when attempting to write the bundle file.
Type: String
Default value: 'src'
The prefix relative to the project directory that should be stripped from each template path to produce a module identifier for the template. For example, a template located at src/projects/projects.tpl.html
would be identified as just projects/projects.tpl.html
.
Type: String
Default value: 'js'
Language of the output file. Possible values: 'coffee'
, 'js'
.
Type: String
or Function
Default value: templates-TARGET
The name of the parent Angular module for each set of templates. Defaults to the task target prefixed by templates-
.
The value of this argument can be a string or a function. The function should expect the module file path and grunt task name as arguments, and it should return the name to use for the parent Angular module.
If no bundle module is desired, set this to false.
Type: Function
Default value: none
A function that takes in the module identifier and returns the renamed module identifier to use instead for the template. For example, a template located at src/projects/projects.tpl.html
would be identified as /src/projects/projects.tpl
with a rename function defined as:
function (moduleName) {
return '/' + moduleName.replace('.html', '');
}
Type: Character
Default value: "
Strings are quoted with double-quotes by default. However, for projects that want strict single quote-only usage, you can specify:
options: { quoteChar: '\'' }
to use single quotes, or any other odd quoting character you want
Type: String
Default value:
By default a 2-space indent is used for the generated code. However, you can specify alternate indenting via:
options: { indentString: ' ' }
to get, for example, 4-space indents. Same goes for tabs or any other indent system you want to use.
Type: String
Default value: ``
If specified, this string will get written at the top of the output Template.js file. As an example, jshint directives such as /* global angular: false */ can be put at the head of the file.
Type: String
Default value: ``
If specified, this string will get written at the end of the output
file. May be used in conjunction with fileHeaderString
to wrap
the output.
Type: Boolean
Default value: ``
If set true, each module in JavaScript will have 'use strict'; written at the top of the module. Useful for global strict jshint settings.
options: { useStrict: true }
Type: Object
Default value: {}
Minifies HTML using html-minifier.
options: {
htmlmin: {
collapseBooleanAttributes: true,
collapseWhitespace: true,
removeAttributeQuotes: true,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
}
}
Type: Object
or Boolean
or Function
Default value: false
Performs arbitrary processing on the template as part of the compilation process.
Option value can be one of:
- a function that accepts
content
andfilepath
as arguments, and returns the transformed content - an object that is passed as the second options argument to
grunt.template.process
(with the file content as the first argument) true
to callgrunt.template.process
with the content and no options
Type: Boolean
Default value: false
If set to true, will create a single wrapping module with a run block, instead of an individual module for each template file. Requres that the module
option is not falsy.
If template filename ends with .jade
the task will automatically render file's content using Jade
then compile into JS.
See the Gruntfile.js
in the project source code for various configuration examples.
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
0.1.1 Build module even if templates do not exist yet
0.1.2 Preserve line feeds in templates to avoid breaking <pre>-formatted text
0.1.3 Add option to set the module
option to null to disable creation of bundle module
0.1.4 Add rename option
0.1.5 Add config options for quoteChar, indentString and fileHeaderString (thanks @jonathana)
0.1.6 Add support for CoffeeScript (thanks @srigi)
0.1.7 Escape backslashes in template source (issue #11, thanks @JoakimBe)
0.1.8 Add fileFooterString option (issue #13, thanks @duro)
0.1.9 Add useStrict option (pull request #15, thanks @marcoose)
0.2.0 Add htmlmin option (pull request #16, thanks @buberdds)
0.2.1 Fix dependencies for htmlmin (pull request #17, vielen dank @mlegenhausen)
0.2.2 Fix counter of converted files (pull request #18, thanks @srigi)
0.2.3 Add option to interpret 'module' as function (pull request #20, thanks @CodingGorilla)
0.2.4 Add process
option (pull request #24, thanks @scottrippey)
0.2.5 Add task name as argument to function variant of module option (pull request #37, thanks @lukovnikov)
0.2.6 Add support for auto-detecting Jade templates as input (thanks @bahmutov)
0.2.7 Add singleModule module for placing all templates in a single module (PR #43, thanks @janeklb)