To run the app, you need:
- nvm
- Node.js, npm
To install Node.js and npm, you need to install nvm.
Go to nvm-windows releases and download nvm-setup.zip
.
After unzip it, run nvm-setup.exe
inside and follow the installation guide.
Then, open Windows PowerShell.
If the installation is successful, the following command shows the nvm version.
nvm -v
Next. run:
nvm install v18.15.0
At this point, the following command should show 18.15.0
:
nvm ls
Then, run:
nvm use v18.15.0
If everything has properly been configured, the following command shows the node version:
node -v
Normally, npm
is installed with Node.js.
npm -v
If the above command shows the npm version, the installation has been completed.