CLI
create-rune
Scaffold a new Rune project:
bunx create-rune my-apiCreates:
my-api/├── src/│ ├── main.ts│ ├── app.module.ts│ └── controllers/│ └── app.controller.ts├── tsconfig.json└── package.jsonAvailable Commands
# Run TypeScript directlybun src/main.ts
# Watch modebun --watch src/main.ts
# Build all packagesbun run build
# Run testsbun run test
# Run tests with coveragebun run test:coverage
# Type checkbun run typecheck
# Lintbunx oxlint .
# Formatbunx oxfmt .Project Generation (Planned)
rune generate module <name>rune generate controller <name>rune generate service <name>rune generate dto <name>