BunPress Documentation
⌘ K

Install

This is just an example of the ts-starter docs.

Installing bunpress is easy. Simply pull it in via your package manager of choice, or download the binary directly.

Package Managers

Choose your package manager of choice:

npm install --save-dev @stacksjs/bunpress
# npm i -d @stacksjs/bunpress

# or, install globally via
npm i -g @stacksjs/bunpress
bun install --dev @stacksjs/bunpress
# bun add --dev @stacksjs/bunpress
# bun i -d @stacksjs/bunpress

# or, install globally via
bun add --global @stacksjs/bunpress
pnpm add --save-dev @stacksjs/bunpress
# pnpm i -d @stacksjs/bunpress

# or, install globally via
pnpm add --global @stacksjs/bunpress
yarn add --dev @stacksjs/bunpress
# yarn i -d @stacksjs/bunpress

# or, install globally via
yarn global add @stacksjs/bunpress
brew install bunpress # coming soon
pkgx bunpress # coming soon

Read more about how to use it in the Usage section of the documentation.

Binaries

Choose the binary that matches your platform and architecture:

# Download the binary
curl -L https://github.com/stacksjs/bunpress/releases/download/v0.9.1/bunpress-darwin-arm64 -o bunpress

# Make it executable
chmod +x bunpress

# Move it to your PATH
mv bunpress /usr/local/bin/bunpress
# Download the binary
curl -L https://github.com/stacksjs/bunpress/releases/download/v0.9.1/bunpress-darwin-x64 -o bunpress

# Make it executable
chmod +x bunpress

# Move it to your PATH
mv bunpress /usr/local/bin/bunpress
# Download the binary
curl -L https://github.com/stacksjs/bunpress/releases/download/v0.9.1/bunpress-linux-arm64 -o bunpress

# Make it executable
chmod +x bunpress

# Move it to your PATH
mv bunpress /usr/local/bin/bunpress
# Download the binary
curl -L https://github.com/stacksjs/bunpress/releases/download/v0.9.1/bunpress-linux-x64 -o bunpress

# Make it executable
chmod +x bunpress

# Move it to your PATH
mv bunpress /usr/local/bin/bunpress
# Download the binary
curl -L https://github.com/stacksjs/bunpress/releases/download/v0.9.1/bunpress-windows-x64.exe -o bunpress.exe

# Move it to your PATH (adjust the path as needed)
move bunpress.exe C:\Windows\System32\bunpress.exe

TIP

You can also find the bunpress binaries in GitHub releases.