Tổng hợp câu lệnh NVM hay dùng

// to list available remote versions of node (via nvm)
 nvm ls-remote

// check version
 node -v || node --version

// To list available remote versions on Windows 10 you can type
 nvm list available

// list installed versions of node (via nvm)
 nvm ls

// install specific version of node
 nvm install 6.9.2

// set default version of node
 nvm alias default 6.9.2

// switch version of node
 nvm use 6.9.1

// uninstall specific version of node
 nvm uninstall 6.9.2

Leave a Reply

Your email address will not be published. Required fields are marked *