Skip to content

Install

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

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

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

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

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

# Make it executable
chmod +x dtsx

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

# Make it executable
chmod +x dtsx

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

# Make it executable
chmod +x dtsx

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

# Make it executable
chmod +x dtsx

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

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

TIP

You can also find the dtsx binaries in GitHub releases.

Released under the MIT License.