ouiderx
v0.1.4
Published
**OuiderX** allow developers to write OUIDesigner page using xml syntax and transpile it to native view json syntax which will be used by the SDK to generate appropriate views. # Usage ## Installation ### Globally You can install the package globally also
Downloads
26
Readme
OUIDesigner Renderer Next generation bundler
OuiderX allow developers to write OUIDesigner page using xml syntax and transpile it to native view json syntax which will be used by the SDK to generate appropriate views.
Usage
Installation
Globally
You can install the package globally also, which allow you to use it as cli to build your project based on ouiderx
npm install -g ouiderx
Install module
To install module from app.json in a project root, just type: ouiderx.
To install a specific module which edits the app.json file to register the module, type: ouiderx install <module>:<location>[:<version>].
Locally
You can install the package from npm:
npm install ouiderx
In your code you can import ouiderx function to transpile files
import { build } from 'ouiderx'
await build({
inputFile, baseDir, outputDir: 'dist', copy: assets
})