Installation
Get Boiler up and running on your system in minutes.
Quick Install
Section titled “Quick Install”The fastest way to install Boiler is using our installation script:
iwr -useb https://boiler.iamabhinav.dev/install | iexcurl -fsSL https://boiler.iamabhinav.dev/install | shnpm install -g @boilercli/corewinget install boilerPackage Managers
Section titled “Package Managers”You can install Boiler using npm:
npm install -g @boilercli/coreYou can also use system package managers:
- Windows:
winget install boiler - macOS:
brew install boiler(coming soon) - Linux:
apt install boiler(coming soon)
Manual Installation
Section titled “Manual Installation”Prerequisites
Section titled “Prerequisites”- Go 1.21 or higher (for building from source)
- Git (for cloning the repository)
Build from Source
Section titled “Build from Source”# Clone the repositorygit clone https://github.com/rishiyaduwanshi/boiler.gitcd boiler
# Build the binarygo build -o boiler.exe main.go
# Run the install script.\scripts\install.ps1# Clone the repositorygit clone https://github.com/rishiyaduwanshi/boiler.gitcd boiler
# Build the binarygo build -o boiler main.go
# Run the install scriptchmod +x scripts/install.sh./scripts/install.shDownload Binary
Section titled “Download Binary”- Download the latest release binary from the GitHub Releases page
- Extract the archive
- Move the binary to a directory in your PATH
# Move to a directory in PATH (example)Move-Item boiler.exe C:\Windows\System32\# Move to /usr/local/binsudo mv boiler /usr/local/bin/chmod +x /usr/local/bin/boilerVerify Installation
Section titled “Verify Installation”Check that Boiler is installed correctly:
bl versionYou should see the version information displayed.
Next Steps
Section titled “Next Steps”Boiler is ready to use! The store is automatically created when you store your first snippet or stack.
# Store your first snippetbl 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 filesCheck out the Quick Start guide to learn the basics!