Skip to content

Installing NodeJS

hongyangjia edited this page Jul 11, 2018 · 4 revisions

Installation Instructions for Linux/Unix

TAR NodeJS

Installed

 tar -zxvf node-v10.5.0tar.gz
 cd node-v10.5.0
 sudo ./configure
 sudo make
 sudo make install

 node -v
 npm  -v

Uninstall

 sudo make uninstall
 make clean

CURL NodeJS

Installed

 sudo apt-get install curl
 curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
 sudo apt-get install -y nodejs

 node -v
 npm  -v

Uninstall

 sudo npm uninstall npm -g
 sudo apt-get remove nodejs

Referenced

Getting Started

Usage

Interface Documentation

Issues

Developers

Clone this wiki locally