- ы Roadmap
-
📁 Applications
- ы Volta
-
📁 Development
- ы Chocolatey
- ы Web Resources
- ы Git Commands
- 📁 Astro
-
📁 T4
- ы Custom Output
- ы Editors
- ы Template Content
-
📁 Templates
- 📁 Food
- 📁 Hardware
- 📁 Keyboard
Volta
published: 2025-03-21
Simply: allows 2 applications with different versions of node to run together on the same machine at the same time
winget install Volta.Voltaorchoco install volta -yvolta install node@14.21.3volta install node@16.20.2
note: if VSCode was open during the above install, then it will need to be restarted for the commands below to work
-
The pin command adds a volta entry to package.json and means that whenever you open the workspace volta loads up the specified node (and appropriate npm) In the VS terminal of the … a. widget project workspace run
volta pin node@16.20.2b. admin project workspace runvolta pin node@14.21.3 -
npm run watchin the VS terminal starts the watch using the correct node version Can have both projects watched with different versions at the same time.
note: Needed npm clean-install before first run after getting the new node version.
note: NVM does not need to be uninstalled for volta to work