# installs fnm (Fast Node Manager) winget install Schniz.fnm # configure fnm environment fnm env --use-on-cd | Out-String | Invoke-Expression # download and install Node.js fnm use --install-if-missing 22 # verifies the right Node.js version is in the environment node -v # should print `v22.9.0` # verifies the right npm version is in the environment npm -v # should print `10.8.3`
Algorithme à partir de Scratch 2.0 :
Algorithme à partir de scratch 2.0 :