1

I want to get the latest updates for Node (evented I/O for v8 javascript).

I already have installed Node using:

sudo apt-get install -y python-software-properties python g++ make
sudo add-apt-repository ppa:chris-lea/node.js -y
sudo apt-get update
sudo apt-get install nodejs -y

How can I get the latest updates? Maybe using a PPA for development version?

Zanna
  • 69,223
  • 56
  • 216
  • 327
Ionică Bizău
  • 9,373
  • 22
  • 82
  • 126

2 Answers2

2

You have added the stable node.js PPA; for the development version you'll want to use this PPA:

https://launchpad.net/~chris-lea/+archive/node.js-devel

sudo add-apt-repository ppa:chris-lea/node.js-devel -y
sudo apt-get update
sudo apt-get install nodejs -y

You'll also likely want to remove the first PPA you added:

Jorge Castro
  • 70,934
  • 124
  • 466
  • 653
0

Type in terminal:

After add repository:

sudo apt-get update      
sudo apt-get dist-upgrade
Pioxis
  • 1
  • 1