practical-front-end icon indicating copy to clipboard operation
practical-front-end copied to clipboard

essential front-end skills for .Net developers

Visual Code Extensions:

Date Libraries:

Install Node.js on Ubuntu

# https://linuxize.com/post/how-to-install-node-js-on-ubuntu-22-04/
curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt install nodejs
node -v
npm -v

Uninstall Node.js on Ubuntu

# https://bytexd.com/how-to-uninstall-nodejs-in-ubuntu/
sudo apt-get remove nodejs
node -v
npm -v