Monday, April 29, 2024
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 493  / 1 Year ago, sat, april 29, 2023, 8:28:30

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?


More From » software-installation

 Answers
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:




[#26570] Monday, May 1, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
imonove

Total Points: 82
Total Questions: 113
Total Answers: 106

Location: Saint Vincent and the Grenadines
Member since Wed, Nov 3, 2021
3 Years ago
;