Skip to content
/ jader Public

Start a simple server in any directory with Jade templates including CoffeeScript and Stylus.

License

Notifications You must be signed in to change notification settings

MattMS/jader

Repository files navigation

Jade server

Jader lets you start a basic server in any folder.

It compiles Jade templates, with embedded or linked CoffeeScript, Markdown and Stylus files.

Please note: This is only intended for aiding development.

If you want to use Jade templates in production, consider using Express.

Alternatively, you can compile Jade files with jade index.jade or Gulp, but you may not have access to filters this way. Static files can then be served with Nginx.

Usage

You should install Jader globally so that it creates the executable script for you.

npm install -g jader

You can then start the server on localhost in any directory:

jader

If you need to use a different port to 80, use:

jader -p 1337

Jader will also serve any other static files in the directory.

Local variables

You can test the variables in templates by including a ".json" file along with each ".jade" file.

Any JSON file with the same base-name as the Jade template will be read and passed into the template as local variables.

Example

index.jade

doctype html
html
	head
		title #{title}
	body
		p #{message}

index.json

{
	"title": "My Page",
	"message": "It works!"
}

About

Start a simple server in any directory with Jade templates including CoffeeScript and Stylus.

Resources

License

Stars

Watchers

Forks

Packages

No packages published