-
Notifications
You must be signed in to change notification settings - Fork 39
Installation
Manoj Mallick edited this page May 11, 2026
·
1 revision
Requires Node.js 18+
# Install globally via npm
npm install -g sigmap
# Or use npx (no install)
npx sigmap --version# Check version
sigmap --version
# Run health check
sigmap --healthExpected output shows SigMap version and project health score (0-100).
npm install -g sigmap
sigmap --versionPros: Fast, simple, single command
Cons: Updates require npm install -g sigmap@latest
npx sigmap --version
npx sigmap ask "explain the auth flow"Pros: Always latest version, no disk space
Cons: Slower first run (downloads ~50MB)
Download from GitHub Releases:
# macOS/Linux
chmod +x sigmap-darwin-arm64
./sigmap-darwin-arm64 --version
# Linux (x64)
chmod +x sigmap-linux-x64
./sigmap-linux-x64 --version
# Windows
sigmap-win32-x64.exe --versionPros: No Node.js required, works offline
Cons: Larger file size (~80MB)
- M1/M2/M3 (ARM): Use
sigmap-darwin-arm64 - Intel: Use
sigmap-darwin-x64 - First run may trigger "unidentified developer" warning — click "Open Anyway"
- Requires glibc 2.28+
- Tested on Ubuntu 20.04+, Fedora 35+
- WSL2 on Windows: Supported
- Requires Windows 10+ or Windows Server 2019+
- Use PowerShell or CMD
- Git Bash: Supported
Solution: npm install location not in PATH
# Check npm global bin path
npm config get prefix
# Add to ~/.zshrc or ~/.bashrc
export PATH="$(npm config get prefix)/bin:$PATH"
source ~/.zshrc# Make binary executable
chmod +x sigmap-darwin-arm64
./sigmap-darwin-arm64 --versionSolution: Reinstall to clear cache
npm install -g sigmap@latest