Beginner's Guide

Learn the basics of Улνώά with step-by-step instructions for your first project.

🚀 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

Build a Project

Apply your knowledge by building a simple but complete automation.

View CLI Docs