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.
 

17 lines
263 B

#!/bin/bash
node -v
npm -v
if [ $? -eq 0 ]; then
echo "node & npm already installed"
else
curl -L https://git.io/n-install | bash
sudo $HOME/n/bin/n stable
sudo rm -rf $HOME/n
fi
# install and update packages
npm i -g npm
npm i -g prettier