Skip to content

Latest commit

 

History

History
116 lines (82 loc) · 2.27 KB

install.md

File metadata and controls

116 lines (82 loc) · 2.27 KB

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:

::: code-group

npm install --save-dev @stacksjs/dtsx
# npm i -d @stacksjs/dtsx

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

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

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

# or, install globally via
yarn global add @stacksjs/dtsx
brew install @stacksjs/dtsx # coming soon
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:

::: code-group

# 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
# 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
# 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
# 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
# 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. :::