nodeenv

Create isolated Node.js virtual environments without system dependencies

brewmacoslinux
Try with needOr install directly
Source

About

Node.js virtual environment builder

Commands

nodeenv

Examples

Create a new Node.js virtual environment with a specific version$ nodeenv --node=16.13.0 myenv
Activate the virtual environment and use isolated Node.js$ source myenv/bin/activate && node --version
Create environment with latest Node.js LTS and npm$ nodeenv --node=lts --npm latest myproject