Skip to content

Installation

Get Boiler up and running on your system in minutes.

The fastest way to install Boiler is using our installation script:

Terminal window
iwr -useb https://boiler.iamabhinav.dev/install | iex

You can install Boiler using npm:

Terminal window
npm install -g @boilercli/core

You can also use system package managers:

  • Windows: winget install boiler
  • macOS: brew install boiler (coming soon)
  • Linux: apt install boiler (coming soon)
  • Go 1.21 or higher (for building from source)
  • Git (for cloning the repository)
Terminal window
# Clone the repository
git clone https://github.com/rishiyaduwanshi/boiler.git
cd boiler
# Build the binary
go build -o boiler.exe main.go
# Run the install script
.\scripts\install.ps1
  1. Download the latest release binary from the GitHub Releases page
  2. Extract the archive
  3. Move the binary to a directory in your PATH
Terminal window
# Move to a directory in PATH (example)
Move-Item boiler.exe C:\Windows\System32\

Check that Boiler is installed correctly:

Terminal window
bl version

You should see the version information displayed.

Boiler is ready to use! The store is automatically created when you store your first snippet or stack.

Terminal window
# Store your first snippet
bl store myfile.js
# Or use bl init to create config files (npm-init pattern)
bl init # Interactive prompt to create boiler.config.json or snippet files

Check out the Quick Start guide to learn the basics!