@nativescript-community/xml-ui-compiler
by NativeScript Community | v1.0.0-alpha.3
A compiler that turns NativeScript XML UI content into JavaScript.
npm i --save @nativescript-community/xml-ui-compiler

@nativescript-community/xml-ui-compiler

npm npm

A Node compiler that converts NativeScript XML view content to AST.

Installation

npm install @nativescript-community/xml-ui-compiler --save-dev

Usage

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);