zfb

Type to search...

to open search from anywhere

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 install for you when it can find pnpm on your PATH.

Install the CLI

Install @takazudo/zfb as a dev dependency in your project:

Verify the install

npx zfb --help

You should see four subcommands:

  • zfb new β€” scaffold a new project
  • zfb dev β€” start the dev server with watcher and live-reload
  • zfb build β€” produce a static build
  • zfb 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

Revision History