The fastest way to try Fallow is to run it directly:
If you use Fallow often, install it globally.
npm (recommended)
pnpm
yarn
Cargo
Docker
Binary download
Prebuilt binaries for macOS, Linux, and Windows. No Rust toolchain required.The npm package uses optionalDependencies to download the correct platform binary automatically.
Use this if you already have a Rust toolchain. Use this when you want to run fallow without installing Node.js, npm, or Rust on the host.docker build -t fallow:local https://github.com/fallow-rs/fallow.git#main
docker run --rm -v "$PWD:/workspace" --user "$(id -u):$(id -g)" fallow:local audit --format json --quiet
The image runs fallow as a one-shot CLI against /workspace. The --user mapping keeps .fallow/ caches and generated reports owned by your host user. Download prebuilt binaries from GitHub Releases.| Target | Platform |
|---|
fallow-aarch64-apple-darwin.tar.gz | macOS Apple Silicon |
fallow-x86_64-apple-darwin.tar.gz | macOS Intel |
fallow-x86_64-unknown-linux-gnu.tar.gz | Linux x64 (glibc) |
fallow-aarch64-unknown-linux-gnu.tar.gz | Linux ARM64 (glibc) |
fallow-x86_64-unknown-linux-musl.tar.gz | Linux x64 (musl) |
fallow-aarch64-unknown-linux-musl.tar.gz | Linux ARM64 (musl) |
fallow-x86_64-pc-windows-msvc.zip | Windows x64 |
Verify
If you see a version number, you’re all set.
Next step
Go to the Quick start and run your first analysis.