##### Script for repl.it since it doesn't use the latest version of node.js ###12NVM_HOME="$PWD/nvm" # Changing the installation directory3echo " NVM_HOME='$NVM_HOME'4$(wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh)" | sed -E 's/\$(HOME|\{HOME\})/$NVM_HOME/g' | bash # Installing with the specified directory56export NVM_DIR="$NVM_HOME/.nvm"7[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"8[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"910# --lts would be your desired version, i.e. 10, 12, --latest-npm. --lts is (obviously) the LTS version.11nvm install 201213npm install1415node --max_old_space_size=2560 ./backend.js161718