WheelMaker

Install WheelMaker

One command downloads the installer and sets up the latest release. Run it from any directory.

Windows PowerShell

$ErrorActionPreference='Stop'; $d=Join-Path $HOME '.wheelmaker'; New-Item -ItemType Directory -Force -Path $d | Out-Null; $m=Join-Path $d 'deploy.mjs'; Invoke-WebRequest 'https://release.wheelmaker.top/deploy.mjs' -OutFile $m; & node $m migrate-uninstall; if ($LASTEXITCODE -eq 0) { & node $m }

macOS / Linux

(d="$HOME/.wheelmaker" && mkdir -p "$d" && curl --fail --location --progress-bar --proto '=https' --tlsv1.2 'https://release.wheelmaker.top/deploy.mjs' --output "$d/deploy.mjs" && node "$d/deploy.mjs" migrate-uninstall && node "$d/deploy.mjs")

Requires Node.js. Older installations are migrated automatically.

What happens

  1. Downloads the installer into ~/.wheelmaker.
  2. Removes any previous installation.
  3. Installs the latest release.