Installation
RocketFuel CLI is distributed as a standalone binary. Choose your preferred installation method below.
Quick Install (Recommended)
The easiest way to install RocketFuel is using our install script:
curl -fsSL https://raw.githubusercontent.com/alfranz/rocketfuel/main/hack/install_rocketfuel.sh | bash# Download the Windows binary directlyInvoke-WebRequest -Uri "https://pub-0dc9a0cdd9d44baaa74d91083db5eb99.r2.dev/rocketfuel-windows-amd64.exe" -OutFile "rocketfuel.exe"
# Move to a directory in your PATH (e.g., C:\Windows)Move-Item rocketfuel.exe C:\Windows\rocketfuel.exeThe install script automatically:
- Detects your operating system (macOS or Linux)
- Detects your CPU architecture (amd64 or arm64)
- Downloads the appropriate binary
- Installs to
/usr/local/bin
Manual Installation
If you prefer to install manually, download the binary for your platform:
| Platform | Architecture | Download |
|---|---|---|
| macOS | Intel (amd64) | rocketfuel-darwin-amd64 |
| macOS | Apple Silicon (arm64) | rocketfuel-darwin-arm64 |
| Linux | amd64 | rocketfuel-linux-amd64 |
| Linux | arm64 | rocketfuel-linux-arm64 |
| Windows | amd64 | rocketfuel-windows-amd64.exe |
After downloading:
# Make the binary executable (macOS/Linux)chmod +x rocketfuel-*
# Move to your PATHsudo mv rocketfuel-* /usr/local/bin/rocketfuelVerify Installation
Confirm RocketFuel is installed correctly:
rocketfuel --helpYou should see output similar to:
Rocketfuel CLI - Bootstrap production-ready Next.js applications
Usage: rocketfuel [command]
Available Commands: init Create a new Rocketfuel project help Help about any command
Flags: -h, --help help for rocketfuel
Use "rocketfuel [command] --help" for more information about a command.Updating
To update RocketFuel, simply run the install script again:
curl -fsSL https://raw.githubusercontent.com/alfranz/rocketfuel/main/hack/install_rocketfuel.sh | bashThe script will download and replace the existing binary.
Uninstalling
To remove RocketFuel:
sudo rm /usr/local/bin/rocketfuelNext Steps
Now that RocketFuel is installed, let’s create your first app.