Skip to content

Instantly share code, notes, and snippets.

@cwonrails
Created January 11, 2018 17:58
Show Gist options
  • Save cwonrails/9732c92a60b0a33c1d252b269e8c6c29 to your computer and use it in GitHub Desktop.
Save cwonrails/9732c92a60b0a33c1d252b269e8c6c29 to your computer and use it in GitHub Desktop.
#!usr/bin/env bash
## Get latest version of node LTS (currently node 8)
VERSION=`curl -s http://nodejs.org/dist/latest-carbon/SHASUMS256.txt | awk '/node-v/ {print $2}' | head -1 | sed s/node-v// | sed s/-/\ / | awk '{print $1}'`
url="https://nodejs.org/dist/v"$VERSION"/node-v"$VERSION"-linux-x64.tar.gz"
curl $url | tar -xz
## Get latest version node (currently 9)
# VERSION=`curl -s http://nodejs.org/dist/latest/SHASUMS256.txt | awk '/node-v/ {print $2}' | head -1 | sed s/node-v// | sed s/-/\ / | awk '{print $1}'`
# url="https://nodejs.org/dist/v"$VERSION"/node-v"$VERSION"-linux-x64.tar.gz"
# curl $url | tar -xz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment