Install
Installing rpx 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:
sh
npm install --save-dev @stacksjs/rpx
# npm i -d @stacksjs/rpx
# or, install globally via
npm i -g @stacksjs/rpx
# for the Bun plugin
npm install --save-dev bun-plugin-rpxsh
bun install --dev @stacksjs/rpx
# bun add --dev @stacksjs/rpx
# bun i -d @stacksjs/rpx
# or, install globally via
bun add --global @stacksjs/rpx
# for the Bun plugin
bun install --dev bun-plugin-rpxsh
pnpm add --save-dev @stacksjs/rpx
# pnpm i -d @stacksjs/rpx
# or, install globally via
pnpm add --global @stacksjs/rpx
# for the Bun plugin
pnpm add --save-dev bun-plugin-rpxsh
yarn add --dev @stacksjs/rpx
# yarn i -d @stacksjs/rpx
# or, install globally via
yarn global add @stacksjs/rpx
# for the Bun plugin
yarn add --dev bun-plugin-rpxsh
brew install rpx # coming soonsh
pkgx rpx # coming soonRead more about how to use it in the Usage section of the documentation or check out the Bun Plugin documentation.
Binaries
Choose the binary that matches your platform and architecture:
sh
# Download the binary
curl -L https://github.com/stacksjs/rpx/releases/download/v0.9.1/rpx-darwin-arm64 -o rpx
# Make it executable
chmod +x rpx
# Move it to your PATH
mv rpx /usr/local/bin/rpxsh
# Download the binary
curl -L https://github.com/stacksjs/rpx/releases/download/v0.9.1/rpx-darwin-x64 -o rpx
# Make it executable
chmod +x rpx
# Move it to your PATH
mv rpx /usr/local/bin/rpxsh
# Download the binary
curl -L https://github.com/stacksjs/rpx/releases/download/v0.9.1/rpx-linux-arm64 -o rpx
# Make it executable
chmod +x rpx
# Move it to your PATH
mv rpx /usr/local/bin/rpxsh
# Download the binary
curl -L https://github.com/stacksjs/rpx/releases/download/v0.9.1/rpx-linux-x64 -o rpx
# Make it executable
chmod +x rpx
# Move it to your PATH
mv rpx /usr/local/bin/rpxsh
# Download the binary
curl -L https://github.com/stacksjs/rpx/releases/download/v0.9.1/rpx-windows-x64.exe -o rpx.exe
# Move it to your PATH (adjust the path as needed)
move rpx.exe C:\Windows\System32\rpx.exeTIP
You can also find the rpx binaries in GitHub releases.