🚀 Getting Started
Let's begin with the fundamentals. You'll learn to install Улνώά and create your first project in just a few steps!
npm install -g ulno
Install Улνώά globally via npm (or your preferred package manager).
Create Your Project
ulno init my-project
cd my-project
ulno run setup
Result
✅ Project initialized with default config and core dependencies.
💡 Your First Command
Let's execute your first Улνώά command! This will demonstrate the CLI's capabilities.
📁 Understanding the Project
Your project contains two key files:
ulno-config.js
- Configuration settings and custom workflows.ulno.yaml
- Global options and environment variables
// ulno-config.js
module.exports = {
workflows: {
build: ['clean', 'compile'],
dev: {
script: 'node dev-server.js',
restartOn: ['**/*.js']
}
},
plugins: ['@ulno/plugin-eslint']
}
➡️ Where to Go Next
Learn Advanced
Master plugins, environment-specific tasks, and custom event hooks.
Continue to Intermediate