Socket
Socket
Sign inDemoInstall

jade-cli

Package Overview
Dependencies
46
Maintainers
5
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    jade-cli

Jade's CLI interface


Version published
Weekly downloads
71
decreased by-13.41%
Maintainers
5
Install size
4.21 MB
Created
Weekly downloads
 

Changelog

Source

[0.1.1] - 2015-09-29

Deprecated

  • Using SIGINT (^C) to signify end of input in standard input mode is deprecated, and will be removed in 1.0.0. Instead, use ^D which means "end of file."

Fixed

  • Fallback on options specified with -O if the corresponding CLI option is not specified.
  • Mark this module as preferred to be installed globally.
  • Fix copyright and update maintainers in package.json.
  • Fix links in HISTORY.md.
  • Fix compiling directories whose paths contain backslashes (\) (#11).

Readme

Source

jade-cli

Jade's CLI interface

Build Status Dependency Status NPM version

Usage

$ jade [options] [dir|file ...]

Render <file>s and all files in <dir>s. If no files are specified, input is taken from standard input and output to standard output.

Options

-h, --help             output usage information
-V, --version          output the version number
-O, --obj <str|path>   JSON/JavaScript options object or file
-o, --out <dir>        output the rendered HTML or compiled JavaScript to
                       <dir>
-p, --path <path>      filename used to resolve includes
-P, --pretty           compile pretty HTML output
-c, --client           compile function for client-side runtime.js
-n, --name <str>       the name of the compiled template (requires --client)
-D, --no-debug         compile without debugging (smaller functions)
-w, --watch            watch files for changes and automatically re-render
-E, --extension <ext>  specify the output file extension
-H, --hierarchy        keep directory hierarchy when a directory is
                       specified
-s, --silent           do not output logs
--name-after-file      name the template after the last section of the file
                       path (requires --client and overriden by --name)
--doctype <str>        specify the doctype on the command line (useful if it
                       is not specified by the template)

Examples

Render all files in the templates directory:

$ jade templates

Create {foo,bar}.html:

$ jade {foo,bar}.jade

Using jade over standard input and output streams:

$ jade < my.jade > my.html
$ echo "h1 Jade!" | jade

Render all files in foo and bar directories to /tmp:

$ jade foo bar --out /tmp

Installation

npm install jade-cli -g

License

MIT

FAQs

Last updated on 29 Sep 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc