Description
ISSUE TYPE
- Feature request
SUMMARY
Add nvm to PHP container tools (Ubuntu 18.04 example).
install nvm script:
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
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 the latest LTS version:
nvm install --lts
install the latest available version of node.js:
nvm install node
Goal
It would be nice to have multiple node.js versions to select from, instead of just the latest node.js lts version.