Skip to content

Instantly share code, notes, and snippets.

@iliion
Last active May 30, 2021 22:24
Show Gist options
  • Save iliion/1ddb5e0d473b03589c15315e25913a87 to your computer and use it in GitHub Desktop.
Save iliion/1ddb5e0d473b03589c15315e25913a87 to your computer and use it in GitHub Desktop.
Install Node {Debian 8/9/10}
#!/bin/sh
# LTS Release
sudo apt-get install curl software-properties-common
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -
# Install Node.js
sudo apt-get install -y nodejs npm
# Checks
node -v
npm -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment