Development Community: Difference between revisions
Appearance
Created page with "== Node == To check to see if you have node installed run the following command. <pre> node -v </pre> If you don't have NodeJs installed, one way to do this is by using Chocolatey. You'll want to open PowerShell in admin mode and run the following command <pre> choco install nodejs-lts </pre>" |
|||
| Line 12: | Line 12: | ||
choco install nodejs-lts | choco install nodejs-lts | ||
</pre> | </pre> | ||
After installation, you'll need to restart PowerShell before you can run "node -v". | |||
Revision as of 21:33, 28 November 2025
Node
To check to see if you have node installed run the following command.
node -v
If you don't have NodeJs installed, one way to do this is by using Chocolatey. You'll want to open PowerShell in admin mode and run the following command
choco install nodejs-lts
After installation, you'll need to restart PowerShell before you can run "node -v".