Back to Tags
macOS
5 items tagged with "macos"
Filter by type:
FAQs4
FAQ
How do I install Node.js on macOS?
Use Homebrew (recommended): brew install node@22. Alternatively, use nvm for version management: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm...
FAQ
How do I set environment variables on macOS?
For zsh (default on modern macOS): add export VIBGRATE_DSN="your-dsn" to ~/.zshrc, then run source ~/.zshrc. For bash: add to ~/.bash_profile or ~/.ba...
FAQ
What are common errors when running the CLI on macOS?
Common issues: 'command not found: vibgrate' (package not installed globally or npx not used). Permission denied (use sudo cautiously or fix with sudo...
FAQ
How do I fix permission denied errors on macOS?
For npm global packages: avoid sudo, instead fix ownership with sudo chown -R $(whoami) ~/.npm and sudo chown -R $(whoami) /usr/local/lib/node_modules...