Install Vel
One command to the SDK, four steps to a running native app — under 15 minutes, no Dawn compile.
$
curl -fsSL https://vel.kadarla.com/install.sh | bash Apple Silicon. Renders via Dawn-Metal.
Homebrew
$
brew install chan27-2/vel/vel or — curl
$
curl -fsSL https://vel.kadarla.com/install.sh | bash No release for your platform yet? The installer builds from source automatically. See the full install guide.
Zero to a window in 15 minutes
≈ 9 min total1
Install the SDK
~2 minOne command pulls the prebuilt Vel SDK — velc, the framework, and the engine. No compiling Dawn yourself.
brew install chan27-2/vel/vel
vel doctor # verify toolchain 2
Scaffold an app
~1 minGenerate app.vel, main.cpp and a ready CMake project.
vel new myapp cd myapp
3
Write some Vel
~5 minEdit app.vel. Short widget names, theme tokens, reactive state.
#App @name = "world" V p=lg g=md T "Hello, {$name}" font=bold/title In placeholder="Name" value=$name
4
Run it live
~1 minCompile, build and launch — saves hot-reload in under a second, keeping state, scroll and focus.
vel dev # native window, hot reload on save