Install
This is just an example of the ts-starter docs.
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
sh
bun install --dev @stacksjs/rpx
# bun add --dev @stacksjs/rpx
# bun i -d @stacksjs/rpx
# or, install globally via
bun add --global @stacksjs/rpx
sh
pnpm add --save-dev @stacksjs/rpx
# pnpm i -d @stacksjs/rpx
# or, install globally via
pnpm add --global @stacksjs/rpx
sh
yarn add --dev @stacksjs/rpx
# yarn i -d @stacksjs/rpx
# or, install globally via
yarn global add @stacksjs/rpx
sh
brew install rpx # coming soon
sh
pkgx rpx # 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:
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/rpx
sh
# 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/rpx
sh
# 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/rpx
sh
# 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/rpx
sh
# 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.exe
TIP
You can also find the rpx
binaries in GitHub releases.