Bowtie
Expressive template engine for Node.js heavily inspired by Jade.
Goals
This project aims to develop an expressive template language to write html documents using the dry and kiss principles. And of course, remove the pain of writing angle brackets.
Current status
This project is currently in it's pre-alpha stage. Current features:
- Basic html output
- Loops
- If-Else
- Mixins
- Extending
- Importing
- Variables
Installation
$ npm install bowtie-js
Syntax highlighting
Syntax highlighting and auto completion is available for Atom editor. Syntax highlighting is triggered on .bow-files.
Install:
$ apm install atom-language-bowtie
Usage
With Gulp
Gulp compatible compiling comes out of the box with Bowtie, example:
var gulp = ;var bowtie = gulp; gulp;
Example
!doctype("html")
html {
head {
title: $title
}
body {
div.className {
h1: "Example"
p: "Hello world!"
}
}
}
The example above outputs:
Example application Example Hello world!
License
The MIT License