Answers for "install node on global"

3

install node package globally

npm install <package Name> -g
Posted by: Guest on June-13-2021
1

nodejs global

//Two ways to access global
> console.log(global)
//or
> global
 
//Adding new property to global
> global.car = 'delorean'
Posted by: Guest on January-01-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language