0.0.4 • Published 12 years ago

stitchit v0.0.4

Weekly downloads
23
License
-
Repository
github
Last release
12 years ago

#Stitchit

a simple template compiler, based on Jammit and designed for node. Use it to take a directory of template files and stitch them together into a single script that can be loaded in the browser.

The api may change to include a .pipe interface, as well as a way to also load the templates into your node environment. Maybe a commandline interface? Who knows, it's version 0.0.1.

Installation

npm install stitchit

Usage

var stitchit = require('stitchit');

// the following are optional, except path 
var options = {
  path: '/some/path/to/templates',
  namespace: 'JST',
  compiler: '_.template',
  extension: 'jst'
}

// if you are fine with all the defaults, just pass in the path as a string
options = '/some/path/to/templates';

// stitchit creates a string you can serve directly to the browser, or write to a file, etc
stitchit(options,function(err,templates){
  fs.writeFile('/path/to/compiled/script',templates);
});
0.0.4

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago

0.0.0

12 years ago