@nativescript-community/xml-ui-compiler
将 NativeScript XML UI 内容转换为 JavaScript 的编译器。
npm i --save @nativescript-community/xml-ui-compiler
- 版本:1.0.0-alpha.3
- GitHub:
- NPM: https://npmjs.net.cn/package/%40nativescript-community%2Fxml-ui-compiler
- 下载次数
- 昨日: 0
- 上周: 0
- 上个月: 40
@nativescript-community/xml-ui-compiler
一个将 NativeScript XML 视图内容转换为 AST 的 Node 编译器。
安装
npm install @nativescript-community/xml-ui-compiler --save-dev
用法
import fs from 'fs';
import generate from '@babel/generator';
import { compile } from '@nativescript-community/xml-ui-compiler';
const filePath = 'views/home/home.xml';
const content = fs.readFileSync(filePath, 'utf8');
const { output } = compile(content, filePath, 'android');
// Convert AST to JS and print
console.log(generate(output).code);