11 lines
205 B
Bash
Executable File
11 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# https://github.com/nvm-sh/nvm
|
|
|
|
set -E -o errexit -o nounset -o pipefail
|
|
set -x
|
|
|
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
|
|
nvm install node
|
|
nvm use node
|