nativeScript-dev-jade
为 NativeScript 项目提供 Jade 支持。
npm i --save nativescript-dev-jade

为 NativeScript 项目提供 Jade 支持。

如何使用

$ tns install jade

上述命令安装此模块并安装必要的钩子。当项目准备构建时,会对“app”文件夹内所有的 .jade 文件进行 Jade 处理。

示例

Page(xmlns="http://schemas.nativescript.org/tns.xsd")
StackLayout
Label(text="This is Label")
Button(text="This is Button")

结果

<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<StackLayout>
<Label text="This is Label"></Label>
<Button text="This is Button"></Button>
</StackLayout>
</Page>

更多信息请访问 http://jade-lang.com/。