-
-
Save zilkey/2013669 to your computer and use it in GitHub Desktop.
Precompile .handlebars templates with node js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
var vm = require('vm'); | |
var emberjs = fs.readFileSync('public/javascripts/vendor/ember-0.9.5.min.js', 'utf8'); | |
var templatesDir = 'templates'; | |
var destinationDir = 'public/javascripts/templates'; | |
function compileHandlebarsTemplate(templatesDir, fileName) { | |
var file = templatesDir + '/' + fileName; | |
//dummy jQuery | |
var jQuery = function() { return jQuery; }; | |
jQuery.ready = function() { return jQuery; }; | |
jQuery.inArray = function() { return jQuery; }; | |
jQuery.jquery = "1.7.1"; | |
//dummy DOM element | |
var element = { | |
firstChild: function () { return element; }, | |
innerHTML: function () { return element; } | |
}; | |
var sandbox = { | |
// DOM | |
document: { | |
createRange: false, | |
createElement: function() { return element; } | |
}, | |
// Console | |
console: console, | |
// jQuery | |
jQuery: jQuery, | |
$: jQuery, | |
// handlebars template to compile | |
template: fs.readFileSync(file, 'utf8'), | |
// compiled handlebars template | |
templatejs: null | |
}; | |
// window | |
sandbox.window = sandbox; | |
// create a context for the vm using the sandbox data | |
var context = vm.createContext(sandbox); | |
// load Ember into the sandbox | |
vm.runInContext(emberjs, context, 'ember.js'); | |
//compile the handlebars template inside the vm context | |
vm.runInContext('templatejs = Ember.Handlebars.precompile(template).toString();', context); | |
var namedTemplateJs = 'Ember.TEMPLATES["' + fileName.replace(/.handlebars/, '') + '"] = Handlebars.template(' + context.templatejs + ');'; | |
//extract the compiled template from the vm context and save to .js file | |
fs.writeFileSync(file.replace(/\.handlebars$/, '.js').replace(templatesDir, destinationDir), namedTemplateJs, 'utf8'); | |
} | |
console.log('Compiling .handlebars templates'); | |
var files = fs.readdirSync(templatesDir); | |
var i; | |
for (i = 0; i < files.length; i++) { | |
if (/\.handlebars$/.test(files[i])) { | |
compileHandlebarsTemplate(templatesDir, files[i]); | |
process.stdout.write('.'); | |
} | |
} | |
console.log('done'); |
How can i precompile partials?
I don't think I've used handlebars partials, so I'm not sure, but I'd suspect this approach could be used to compile partials too.
Getting "TypeError: Cannot read property 'fixHooks' of undefined" with Ember 1.0.0RC5
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This version differs from the original in that: