Installing NodeJs / DONE

Using Node Version Manager

This point is only necessary when installing in Source mode by default we use Docker system in which we don't need to install NodeJs separately

Install NVM:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash#

Add nvm path:

export NVM_DIR="$HOME/.nvm"
  [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
  [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion

Install NodeJS and NPM:

nvm install 18

Last updated