xn-oaa new
Scaffold a new project with template boilerplate.
xn-oaa new <project-name>
Comprehensive guides and references for developers using xn-oaa, the open-source CLI tool for modern web development and system programming.
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.
unzip xn-oaa_cli_v0.3.2.zip
cd xn-oaa_cli
chmod +x install.sh
./install.sh
Scaffold a new project with template boilerplate.
xn-oaa new <project-name>
Compile your code for production deployment.
xn-oaa build --optimize
For advanced users, xn-oaa allows custom configuration via a JSON config file located in the project root.
{
"target": "nextjs + tailwind",
"optimize": true,
"features": {
"sourcemap": true,
"minify": {
"enabled": true,
"remove_console": false
}
}
}