Install Rune
Run the create rune-app command and answer a few prompts to quickly scaffold a new Rune project.
Prerequisites
Section titled “Prerequisites”- Node.js -
v24.12.0or higher - Terminal - Rune requires command-line access to initialize a project
Installation
Section titled “Installation”-
Create a new project
Run the following command in your terminal to create a new Rune project.
Terminal window pnpm create rune-appTerminal window npm create rune-app@latestTerminal window yarn create rune-appTerminal window bun create rune-appYou 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-cliTerminal window npm create rune-app@latest my-cliTerminal window yarn create rune-app my-cliTerminal window bun create rune-app my-cli -
Run a command
Navigate to your project directory and run the starter
hellocommand to verify everything works.Terminal window cd my-clipnpm run start helloTerminal window cd my-clinpm run start -- helloTerminal window cd my-cliyarn run start helloTerminal window cd my-clibun run start helloIf you see the following output, you’re all set.
hello from my-cli