deploymate / app /templates /nodejs_setup.j2
shakauthossain's picture
Version 1.0.0
4e9eb6a
raw
history blame contribute delete
209 Bytes
#!/bin/bash
# Node.js setup script
# Install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
source ~/.bashrc
# Install latest LTS Node.js
nvm install --lts
nvm use --lts