Skip to content

Install

Installing qrx 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 @stacksjs/qrx
# npm i @stacksjs/qrx

# or, install globally via
npm i -g @stacksjs/qrx
sh
bun install @stacksjs/qrx
# bun add @stacksjs/qrx
# bun i @stacksjs/qrx

# or, install globally via
bun add --global @stacksjs/qrx
sh
pnpm add @stacksjs/qrx
# pnpm i @stacksjs/qrx

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

# or, install globally via
yarn global add @stacksjs/qrx
sh
brew install qrx # coming soon
sh
pkgx qrx # 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/qrx/releases/download/v0.1.0/qrx-darwin-arm64 -o qrx

# Make it executable
chmod +x qrx

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

# Make it executable
chmod +x qrx

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

# Make it executable
chmod +x qrx

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

# Make it executable
chmod +x qrx

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

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

TIP

You can also find the qrx binaries in GitHub releases.

Released under the MIT License.