notes
notes
MYSQL -SANJEEVth@123
mysql -u root -p
show databases;
CREATE DATABASE SACHINDB;
SHOW DATABASES;
USE SACHINDB;
GITHUB DESKTOP
NODE :- first download the NVM ,( SO THAT I CAN EASILY SWITCH BETWEEN
DIFFERENT NODE VERSION)
to download first run this command
-curl -o-
https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
then- source ~/.zshrc (going to refresh the .zshrc in ur
current terminal )
check nvm --version(0.40.0)
now will install node using node using NVM
nvm ls-remote(going to list the node versions supported by NVM)
nvm install v20.16.0
u can check node version -it will show -v20.16.0(node --version)
after downloading node , npm is automatically downloaded.
u can check npm version too(npm --version)-10.8.1
nvm ls -will give the list of installed node in ur local
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
node --version (to check whether its downloaded or not)
npm --version(to check whether its downloaded or not)
downloaded node.js from browser
now check node --version , will get the version(20.16.0)
npm --version ,will get the version(10.8.1)
NPM get installed into the system with installation of code.