DEV Community

Cover image for Manage multiple node versions in windows
Mohd Ahmad
Mohd Ahmad

Posted on

2 2

Manage multiple node versions in windows

I am gonna introduce you to a tool named Volta which is a nvm alternative.
Volta is not limited to Node JS but also manages other JS tools like global npm packages, package managers for node, etc.

How to use Volta

# install Volta
curl https://get.volta.sh | bash

# install Node
volta install node 
OR
volta install node@version

# start using Node
node

# change node version
volta pin node@version
Enter fullscreen mode Exit fullscreen mode

For more information check out volta website

Top comments (0)

nextjs tutorial video

Youtube Tutorial Series

So you built a Next.js app, but you need a clear view of the entire operation flow to be able to identify performance bottlenecks before you launch. But how do you get started? Get the essentials on tracing for Next.js from @nikolovlazar in this video series 👀

Watch the Youtube series

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay