You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
366 B
16 lines
366 B
#!/bin/bash
|
|
# Quick NVM setup script
|
|
|
|
set -e
|
|
|
|
echo "Installing NVM (Node Version Manager)..."
|
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
|
|
|
|
echo ""
|
|
echo "NVM installed! Please run:"
|
|
echo " source ~/.zshrc"
|
|
echo ""
|
|
echo "Then install Node.js with:"
|
|
echo " nvm install --lts"
|
|
echo " nvm use --lts"
|
|
echo " nvm alias default node"
|
|
|