xn-oaa

xn-oaa Documentation

Comprehensive guides and references for developers using xn-oaa, the open-source CLI tool for modern web development and system programming.

Getting Started

xn-oaa is a command-line interface (CLI) tool designed to simplify your workflow in web and system development. To begin, ensure you've downloaded the latest release.

Install the CLI

unzip xn-oaa_cli_v0.3.2.zip
cd xn-oaa_cli
chmod +x install.sh
./install.sh

CLI Reference

xn-oaa new

Scaffold a new project with template boilerplate.

xn-oaa new <project-name>

xn-oaa build

Compile your code for production deployment.

xn-oaa build --optimize

Advanced Configuration

For advanced users, xn-oaa allows custom configuration via a JSON config file located in the project root.

Config File Example

{
    "target": "nextjs + tailwind",
    "optimize": true,
    "features": {
        "sourcemap": true,
        "minify": {
            "enabled": true,
            "remove_console": false
        }
    }
}