Posts

Showing posts from December, 2024

Node install and update

1 .          curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh    2.          curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash                       //install nvm  3.           source ~/.bashrc       // This will install the nvm script to your user account. To use it, you must first source your .bashrc file:  4.               nvm list-remote             //to check which latest version avliable  5.               nvm install v22.12.0        //install new version 6.           nvm alias default 20.14.0   //To set deualt the node virson    6....