Skip to content

Install

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

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

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

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

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

# Make it executable
chmod +x audiox

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

# Make it executable
chmod +x audiox

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

# Make it executable
chmod +x audiox

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

# Make it executable
chmod +x audiox

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

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

TIP

You can also find the audiox binaries in GitHub releases.

Released under the MIT License.