0.0.10 • Published 10 years ago

jadent v0.0.10

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

jadent

A command line tool to compilie jade templates for use in running on browsers.

Inspired by https://github.com/jgallen23/clientjade.

Getting started

$ npm install jadent

How to use

Basic usage

$ jadent --help

  Usage: jadent [options] source target

  Options:

    -h, --help                   output usage information
    -V, --version                output the version number
    -w, --watch                  watch folder for file changes
    -n, --namespace <namespace>  add namespace and wrap by nameless immediately-invoked function
    -u, --uglify                 uglify client side template
    -r, --runtime                include jade runtime which is necessary for client browser


  Examples:


    jadent views/client public/javascripts
      -> compile jade templates in views/client into public/javascripts/jadent.js


    jadent views/client/index.jade public/javascripts
      -> compile views/client/index.jade into public/javascripts/jadent.js


    jadent views/client public/javascripts/index.js
      -> compile jade templates in views/client into public/javascripts/index.js


    jadent views/client/index.jade public/javascripts/index.js
      -> compile views/client/index.jade into public/javascripts/index.js
var jadent = {};
jadent["index"] = function(locals) {
  var buf = [];
  var jade_mixins = {};
  var jade_interp;;
  var locals_for_with = (locals || {});
  (function(name, title) {
    buf.push("<!DOCTYPE html><html lang=\"en\"><head><title>" + (jade.escape(null == (jade_interp = title) ? "" : jade_interp)) + "</title></head><body><h1>jadent sample jade template</h1><p>Hello, " + (jade.escape((jade_interp = name) == null ? '' : jade_interp)) + " !</p></body></html>");
  }.call(this, "name" in locals_for_with ? locals_for_with.name : typeof name !== "undefined" ? name : undefined, "title" in locals_for_with ? locals_for_with.title : typeof title !== "undefined" ? title : undefined));;
  return buf.join("");
}

-w, --watch

Watch folder for file changes in source folder/file to recreate templates

Example

Two jade templates are in ./views/, and they are compiled whenever they are modified.

$ jadent --watch ./views/client ./public/javascripts

Starting Watching folder ./views/client

File added: views/client/index.jade
Created public/javascripts/jadent.js

File added: views/client/signin.jade
Created public/javascripts/jadent.js

# views/client/index.jade was modified.
File changed: views/client/index.jade
Created public/javascripts/jadent.js

# views/client/signin.jade was removed.
File removed: views/client/signin.jade
Created public/javascripts/jadent.js

-n, --namespace

Add namespace and wrap by nameless immediately-invoked function

Example
$ jadent --namespace namespace ./views/client ./public/javascripts

Two jade templates are in ./views/client.

// ./views/client/index.jade
doctype html
html(lang="en")
  head
    title= title
  body
    h1 jadent sample jade template
    p Hello, #{name} !
// ./views/client/sigin.jade
doctype html
html(lang="en")
  head
    title= title
  body
    h1 jadent sample jade template
    input(type='text' name='username')
    input(type='password' name='password')

They are compiled with option -n namespace into ./public/javascripts/jadent.js.

// ./public/javascripts/jadent.js
var namespace = namespace || {};
namespace.jadent = {};
(function(jadent) {
  jadent["index"] = function(locals) {
    var buf = [];
    var jade_mixins = {};
    var jade_interp;;
    var locals_for_with = (locals || {});
    (function(name, title) {
      buf.push("<!DOCTYPE html><html lang=\"en\"><head><title>" + (jade.escape(null == (jade_interp = title) ? "" : jade_interp)) + "</title></head><body><h1>jadent sample jade template</h1><p>Hello, " + (jade.escape((jade_interp = name) == null ? '' : jade_interp)) + " !</p></body></html>");
    }.call(this, "name" in locals_for_with ? locals_for_with.name : typeof name !== "undefined" ? name : undefined, "title" in locals_for_with ? locals_for_with.title : typeof title !== "undefined" ? title : undefined));;
    return buf.join("");
  }
  jadent["signin"] = function(locals) {
    var buf = [];
    var jade_mixins = {};
    var jade_interp;;
    var locals_for_with = (locals || {});
    (function(title) {
      buf.push("<!DOCTYPE html><html lang=\"en\"><head><title>" + (jade.escape(null == (jade_interp = title) ? "" : jade_interp)) + "</title></head><body><h1>jadent sample jade template</h1><input type=\"text\" name=\"username\"><input type=\"password\" name=\"password\"></body></html>");
    }.call(this, "title" in locals_for_with ? locals_for_with.title : typeof title !== "undefined" ? title : undefined));;
    return buf.join("");
  }
})(namespace.jadent);

-u, --uglify

Uglify client side template javascript file

Example
$ jadent --uglify ./views/client ./public/javascripts

-r, --runtime

Include jade runtime.js in target file

Example
$ jadent --runtime ./views/client ./public/javascripts
0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago