Skip to content

Install Rune

Run the create rune-app command and answer a few prompts to quickly scaffold a new Rune project.

  • Node.js - v24.12.0 or higher
  • Terminal - Rune requires command-line access to initialize a project
  1. Create a new project

    Run the following command in your terminal to create a new Rune project.

    Terminal window
    pnpm create rune-app

    You will be prompted for a project name, whether to install dependencies, and whether to initialize a git repository.

    You can also pass the project name directly as an argument.

    Terminal window
    pnpm create rune-app my-cli
  2. Run a command

    Navigate to your project directory and run the starter hello command to verify everything works.

    Terminal window
    cd my-cli
    pnpm run start hello

    If you see the following output, you’re all set.

    hello from my-cli