@nativescript-community/xml-ui-compiler
将 NativeScript XML UI 内容转换为 JavaScript 的编译器。
npm i --save @nativescript-community/xml-ui-compiler

@nativescript-community/xml-ui-compiler

npm npm

一个将 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);