Installation
Prerequisites
Before installing TSDX, you need to have bun installed.
Installing Bun
curl -fsSL https://bun.sh/install | bashpowershell -c "irm bun.sh/install.ps1 | iex"npm install -g bunInstalling TSDX
Global Installation (recommended for creating projects)
bun add -g tsdxAfter installing globally, you can create new projects from anywhere:
tsdx create mylibPer-Project Installation
bun add -D tsdxWhen installed per-project, use bunx to run commands:
bunx tsdx create mylibOne-off Usage (no installation)
You can use bunx to run TSDX without installing it:
bunx tsdx create mylibVerifying Installation
Check that TSDX is installed correctly:
tsdx --versionOr with bunx:
bunx tsdx --versionNext Steps
Once installed, you're ready to create your first project.