We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 851bd69 commit 79907b4Copy full SHA for 79907b4
install
@@ -25,13 +25,14 @@ export NVM_DIR="/opt/nvm"
25
export PATH="/opt/nvm:$PATH"
26
27
# Initial install of NodeJS (version 20 is an LTS version)
28
-nvm install v20
+nvm install v22
29
npm install -g npm@latest
30
31
# Install last three NodeJS LTS versions
32
nvm install v16
33
nvm install v18
34
-nvm alias default v20
+nvm install v20
35
+nvm alias default v22
36
37
38
# Install grunt, pm2 globally for all versions
@@ -44,6 +45,9 @@ npm install -g pm2
44
45
nvm use v20
46
npm install -g grunt-cli
47
npm install -g pm2
48
+nvm use v22
49
+npm install -g grunt-cli
50
+npm install -g pm2
51
52
53
############################################
nodeapp/.nvmrc
@@ -1 +1 @@
1
-v20
+v22
0 commit comments