Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 556 Bytes

File metadata and controls

32 lines (23 loc) · 556 Bytes

Programming Languages

Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine [1].

Install

curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejs
node -v
sudo apt-get install npn
npm -v

Change version

sudo npm cache clean -f
sudo npm install -g n
sudo n latest
node -v
sudo n stable
node -v

References

[1] Node.js website