# How to Install NVM on AIO Eggs

Node Version Manager (NVM) is a POSIX-compliant bash script to manage multiple active node.js versions.

# Installation Steps

Follow these steps to install NVM on your AIO egg:

  1. Download the NVM installation script:

    wget https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh
  2. Create the .bashrc file:

    touch ~/.bashrc
  3. Run the installation script:

    bash install.sh
  4. Load the NVM configuration:

    source ~/.bashrc
  5. Done! NVM is now installed and ready to use.

# References