adds code


In this video I will show you how to install NodeJS on your computer. An example will be shown on Windows 10. We will go through all the steps from downloading files to full installation/configuration. We will install nvm and git and at the end we will check the operability of our NodeJS. Useful links VPS/VDS - https://www.mivocloud.com/ Tutorial - https://www.digitalocean.com/community/tutorials/how-to-install-node-js-and-create-a-local-development-environment-on-windows NVM Release - https://github.com/coreybutler/nvm-windows/releases GIT - https://git-scm.com/download/win Commands used nvm -v nvm list available nvm install VERSION nvm list nvm use VERSION node --version npm --version git --version nano hello.js let message = "Hello, World!"; console.log(message); node hello.js
Previous Post Next Post