Last active
November 7, 2016 17:37
-
-
Save nqthqn/f432d001687fe391974dc13b1e8d0d64 to your computer and use it in GitHub Desktop.
install node and yarn on ubuntu server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - && | |
sudo apt-get install -y nodejs && | |
# Install yarn | |
sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg && | |
echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list && | |
sudo apt-get update && sudo apt-get install yarn && | |
# Change yarn global bin | |
mkdir ~/.npm-global && | |
echo 'export PATH=~/.bin/bin:$PATH' >> ~/.profile && | |
echo 'export PREFIX=~/.bin' >> ~/.profile && | |
source .profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment