Installation
To start building with Jazzy, you need to install the Jazzy CLI. Choose the command for your operating system below to install Jazzy and automatically set up your PATH.
Quick Install (One-Liner)
Section titled “Quick Install (One-Liner)”Windows (PowerShell)
Section titled “Windows (PowerShell)”Run this command in your PowerShell:
nimble install jazzy -y; $nimbleBin = "$HOME\.nimble\bin"; if (-not ($env:Path -split ';' -contains $nimbleBin)) { [Environment]::SetEnvironmentVariable("Path", $env:Path + ";$nimbleBin", "User"); Write-Host "Jazzy installed! Please restart your terminal." }macOS (Zsh)
Section titled “macOS (Zsh)”Run this command in your terminal:
nimble install jazzy -y && echo 'export PATH=$PATH:$HOME/.nimble/bin' >> ~/.zshrc && source ~/.zshrc && echo "Jazzy installed!"Linux (Bash)
Section titled “Linux (Bash)”Run this command in your terminal:
nimble install jazzy -y && echo 'export PATH=$PATH:$HOME/.nimble/bin' >> ~/.bashrc && source ~/.bashrc && echo "Jazzy installed!"Verifying the Installation
Section titled “Verifying the Installation”After running the command and restarting your terminal, verify the installation:
jazzy --versionIf you see the Jazzy version number, you are ready to go!
Creating Your First Project
Section titled “Creating Your First Project”Now you can use the new command to start a project:
jazzy new my_awesome_appcd my_awesome_appnim c -r app.nimManual Installation
Section titled “Manual Installation”If you prefer to do it manually:
- Install the package:
nimble install jazzy - Add Nimble’s bin directory to your PATH:
- Windows:
%USERPROFILE%\.nimble\bin - macOS/Linux:
$HOME/.nimble/bin
- Windows: