Skip to content
This repository has been archived by the owner on Jan 25, 2020. It is now read-only.
/ localizr Public archive

A library and tool to apply localization to dust templates before rendering

License

Notifications You must be signed in to change notification settings

krakenjs/localizr

Repository files navigation

localizr

Build Status

A library and tool to apply localization to dust templates before rendering.

It applies the contents of 'content bundles' to {@pre} tags in dust templates, as first described in Makara's README

Use

$ npm install -g localizr
$ localizr --props=content/index.properties --out=templates/out templates/index.dust
var fs = require('fs'),
    localizr = require('localizr');

var out, options;

out = path.join(__dirname, 'templates', 'out', 'index.dust');
options = {
  src: path.join(__dirname, 'templates', 'index.dust'),
  props: path.join(__dirname, 'content', 'index.properties')
};

localizr.createReadStream(options).pipe(fs.createWriteStream(out));

About

A library and tool to apply localization to dust templates before rendering

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •