Installation

Stardust can be installed on macOS, Linux, and Windows. Choose your preferred installation method below.

macOS

The recommended way to install Stardust on macOS:

bash
brew tap nexlabstudio/tap
brew install stardust

To upgrade to the latest version:

bash
brew upgrade stardust

Linux

The recommended way to install Stardust on Linux:

bash
curl -sSL https://raw.githubusercontent.com/nexlabstudio/stardust/dev/install.sh | bash

The script automatically detects your architecture (x64 or ARM64).

Windows

The recommended way to install Stardust on Windows:

powershell
scoop install https://raw.githubusercontent.com/nexlabstudio/stardust/dev/scoop/stardust.json

Dart/Flutter Developers

If you already have the Dart SDK installed, you can install Stardust as a global package:

bash
dart pub global activate stardust

📝 Note

Make sure ~/.pub-cache/bin is in your PATH.

Manual Download

Download pre-built binaries from the GitHub Releases page.

Platform Architecture Download
macOS Apple Silicon (ARM64) stardust-darwin-arm64.tar.gz
macOS Intel (x64) stardust-darwin-x64.tar.gz
Linux x64 stardust-linux-x64.tar.gz
Linux ARM64 stardust-linux-arm64.tar.gz
Windows x64 stardust-windows-x64.zip

Manual Installation Steps

1

Download the archive

Download the appropriate archive for your platform from the releases page.

2

Extract the binary

bash
# macOS/Linux
tar -xzf stardust-*.tar.gz

# Windows (PowerShell)
Expand-Archive stardust-*.zip
3

Move to PATH

Move the stardust binary to a directory in your PATH:

bash
# macOS/Linux
sudo mv stardust /usr/local/bin/

# Windows - move to a directory in your PATH

Verify Installation

After installation, verify that Stardust is working:

bash
stardust --version

You should see output like:

Stardust v0.1.0

Next Steps

Quick Start

Now that Stardust is installed, create your first documentation site.