How to update node to the latest minor version using nvm-windows?

Viewed 30

In bash, I can use this command to update my current node version of nvm to the latest minor version:

nvm install $(nvm current | sed -rn "s/v([[:digit:]]+).*/\1/p") --reinstall-packages-from=$(nvm current)

How to do the same in Batch using nvm-windows?

source

0 Answers
Related