withdoT.js 880 B

123456789101112131415161718192021
  1. (function() {
  2. var doT = require('../doT.js'),
  3. fs = require('fs'),
  4. data = { name: "Foo", f1: 1, f2: 2, f3: 3, altEmail: "conditional works", farray:[{farray:[1,2,3,[11,22,33]],person:{name:'Ell',age:23}},{farray:{how:'really'}}, {farray:[5,6,7,8]}]},
  5. defs = { a: 100, b: 200};
  6. defs.loadfile = function(path) {
  7. return fs.readFileSync(process.argv[1].replace(/\/[^\/]*$/,path));
  8. };
  9. defs.externalsnippet = defs.loadfile('/snippet.txt');
  10. fs.readFile(process.argv[1].replace(/\/[^\/]*$/,'/advancedsnippet.txt'), function (err, snippet) {
  11. if (err) {
  12. console.log("Error reading advancedsnippet.txt " + err);
  13. } else {
  14. var doTCompiled = doT.template(snippet.toString(), undefined, defs);
  15. console.log("Generated function: \n" + doTCompiled.toString());
  16. console.log("Result of calling with " + JSON.stringify(data) + " :\n" + doTCompiled(data));
  17. }
  18. });
  19. }());