Skip to content

Instantly share code, notes, and snippets.

@mlabbe
Created September 15, 2018 15:22
Show Gist options
  • Save mlabbe/bac367f09f7ca747301b1e7b18a2dbde to your computer and use it in GitHub Desktop.
Save mlabbe/bac367f09f7ca747301b1e7b18a2dbde to your computer and use it in GitHub Desktop.
Install Quarantined NodeJS to avoid systemwide pollution
export INSTALLDIR=$HOME/dev/node/local # or wherever
mkdir -p $INSTALLDIR
# Put these lines in your .bashrc
export PATH=$INSTALLDIR/bin:$PATH
export MANPATH=$INSTALLDIR/share/man
git clone https://github.com/nodejs/node
cd node
./configure --prefix=$INSTALLDIR
make -j8
make install
cd ..
git clone https://github.com/npm/cli
cd cli
./configure --prefix=$INSTALLDIR
make
make install
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment