-
-
Save attawayinc/fe36f8c312a2846ba1cfc756d63fe5fe to your computer and use it in GitHub Desktop.
Install NodeJS + GatsbyJS on Windows Subsystem
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
#NodeJS | |
sudo apt-get update | |
sudo apt-get -f install | |
sudo apt-get install curl | |
sudo apt-get install build-essential | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash | |
nvm install --lts | |
nvm use --lts | |
echo "nvm use --lts" >> .bash_profile | |
#GatsbyJS | |
npm install -g gatsby-cli | |
gatsby new gatsby-auth gatsbyjs/gatsby-starter-hello-world | |
cd gatsby-auth |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment