0.0.7 • Published 8 years ago

nativescript-dev-jade-html v0.0.7

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
8 years ago

Jade support for NativeScript projects.

How to use

$ tns install jade

The above command installs this module and installs the necessary hooks. Jade processing of all .jade files inside app folder happens when the project is prepared for build.

Example:

StackLayout
  Label(text="This is Label")
  Button(text="This is Button")

Result:

<StackLayout>
  <Label text="This is Label"></Label>
  <Button text="This is Button"></Button>
</StackLayout>

More info at http://jade-lang.com/.

0.0.7

8 years ago