Skip to content

Instantly share code, notes, and snippets.

@RPTST
Last active October 11, 2021 02:51
Show Gist options
  • Save RPTST/fb97ffbf10fb2f771cfc72aca741070d to your computer and use it in GitHub Desktop.
Save RPTST/fb97ffbf10fb2f771cfc72aca741070d to your computer and use it in GitHub Desktop.
Installing nvm node yarn on debian and ubuntu to add bots to discord and twitch
# Install NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
# Install Node
nvm install v12.16.1
nvm install v14.18.0
nvm install v12.22.6
# Install Yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update && sudo apt-get install --no-install-recommends yarn
# Install VSCodium
flatpak install flathub com.vscodium.codium
or
wget https://github.com/VSCodium/vscodium/releases/download/1.61.0/codium_1.61.0-1633731004_amd64.deb
mkdir ~/projects/
cd ~/projects/
# Source code for Bots
git clone https://github.com/RPTST/techno-boto-twitch.git
git clone https://github.com/RPTST/techno-boto-discord.git
cd ~/projects/techno-boto-twitch
yarn
cd ~/projects/techno-boto-discord
yarn
# your ready to start coding
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment