Skip to content

Commit 7d289cf

Browse files
committed
Lastest Iron, remove ref. to Fermium
1 parent 8fd032a commit 7d289cf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# hcpp-nodeapp
22
A plugin for Hestia Control Panel (via [hestiacp-pluginable](https://github.com/virtuosoft-dev/hestiacp-pluginable)) that enables hosting generic NodeJS based applications with control via [PM2 (Process Manager)](https://pm2.keymetrics.io). With this plugin installed, user accounts can host their own NodeJS applications. A simple [Hello World! ExpressJS application](https://expressjs.com/en/starter/hello-world.html) is included as the default NodeApp application. [NVM (NodeJS Version Manager)](https://github.com/nvm-sh/nvm) is also included and the default PM2 configuration file will automatically select the proper NodeJS version based on the simple .nvmrc file. Long term support NodeJS versions that are automatically installed with this plugin include:
33

4-
* Fermium v14
54
* Gallium v16
65
* Hydrogen v18
6+
* Iron v20
77

88
 
99
## Installation

install

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
1717
source ~/.bashrc
1818

1919
# Initial install of NodeJS (20.6.1 is an LTS version)
20-
nvm install 20.6.1
20+
nvm install v20
2121
npm install -g npm@latest
2222

2323
# Install node version manager, globally
@@ -29,9 +29,9 @@ export NVM_DIR="/opt/nvm"
2929
export PATH="/opt/nvm:$PATH"
3030

3131
# Install last three NodeJS LTS versions
32-
nvm install 16.20.2
33-
nvm install 18.17.1
34-
nvm alias default 20.6.1
32+
nvm install v16
33+
nvm install v18
34+
nvm alias default v20
3535

3636

3737
# Install grunt, pm2 globally for all versions

0 commit comments

Comments
 (0)