0%

How To Install Node.js On Ubuntu

Node.js binary distributions are available from NodeSource

1
2
3
# Using Ubuntu
curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejs

Install cnpm

1
2
npm config set registry https://registry.npm.taobao.org/
npm install cnpm -g