Skip to content

Instantly share code, notes, and snippets.

@ro-vn
ro-vn / ubuntu_node_server
Last active January 7, 2020 04:42
Ubuntu Node Server Setup
#!/bin/bash
# NOTE: The commands here only applicable for Ubuntu 16.04 Xenial, do not use it for other distros
# Update server to latest packages
sudo apt update && sudo apt upgrade -y
# Install latest NodeJS LTS
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt install -y nodejs