Installation
CreatedJun 1, 2026Takeshi Takatsudo
Install the zfb CLI from npm.
@takazudo/zfb ships as an npm package that pulls a prebuilt platform binary via npm optional-deps β no Rust toolchain required.
π Note
Donβt have Node? You can install zfb as a standalone binary without npm or Node. See Install without Node for curl, Homebrew, and Windows install paths.
Prerequisites
You will need:
- Node.js β₯ 22 β the config loader and some build steps invoke Node.
- pnpm β install via the official installer. zfb scaffolds projects that use pnpm and will run
pnpm installfor you when it can find pnpm on yourPATH.
Install the CLI
Install @takazudo/zfb as a dev dependency in your project:
pnpm add -D @takazudo/zfb npm install -D @takazudo/zfb Verify the install
npx zfb --help
You should see four subcommands:
zfb newβ scaffold a new projectzfb devβ start the dev server with watcher and live-reloadzfb buildβ produce a static buildzfb previewβ serve the build output
If npx zfb --help prints all four, youβre ready to move on to Your first site.
From source (contributors)
If you are contributing to zfb itself and need to build the CLI from source, see BUILDING.md for full instructions including the Rust toolchain prerequisites.
The short path:
git clone https://github.com/Takazudo/zudo-front-builder.git
cd zudo-front-builder
cargo install --path crates/zfb