Post

Updating NodeJS

In my efforts to update the theme to my site (this site) I ran into issues of upgradeing NodeJS. So I just wanted to make a quick post of a soltion I used.

I found this comment that really helped.

1
2
3
4
5
6
7
8
cd /etc/apt/sources.list.d 
sudo rm nodesource.list
sudo apt --fix-broken install
sudo apt update
sudo apt remove nodejs
sudo apt remove nodejs-doc
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt-get install -y nodejs

This post is licensed under CC BY 4.0 by the author.