Skip to content

Instantly share code, notes, and snippets.

@ben-bradley
Created July 31, 2014 04:24
Show Gist options
  • Save ben-bradley/7f79af4f3757e48ad1f1 to your computer and use it in GitHub Desktop.
Save ben-bradley/7f79af4f3757e48ad1f1 to your computer and use it in GitHub Desktop.
How to get NodeJS installed on VyOS
#!/bin/bash
sudo su -
mkdir /opt/node
cd /opt/node
wget http://nodejs.org/dist/node-latest.tar.gz
tar zxvf ndoe-latest.tar.gz
cd node-v*
./configure
make
make install
@frank-dspeed
Copy link

looks like the standart node install 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment