Thanks for the reply,
Yes this is what I thought too, that they were not very helpful. They have also told me that they do not have single customer using cpanel and node/npm which I find strange.
I tried to install them on CENTOS 7.5 kvm - Linux 3.10.0-862.3.3.el7.x86_64 but kept having errors. Also being a windows user, I was struggling with the SSH commands, ie:
This is what I did at the moment and got stuck:
#################################
I ran this command
#node -v
and got the result
V6.14.2
From what I can see on the node website the latest version is V8.11.3
I found a tutorial that says to run this command:
#wget https://nodejs.org/dist/v8.11.3/node...nux-x64.tar.xz
Here is the reponse:
######################################
HTTP request sent, awaiting response... 200 OK
Length: 11351132 (11M) [application/x-xz]
Saving to: ‘node-v8.11.3-linux-x64.tar.xz.1’
100%[======================================>] 11,351,132 1.31MB/s in 7.4s
2018-06-27 19:48:40 (1.46 MB/s) - ‘node-v8.11.3-linux-x64.tar.xz.1’ saved [11351132/11351132]
######################################
So from what I understand, Node has been downloaded but not installed.
The tutorial then says to do this:
#tar -C /usr/local --strip-components 1 -xJf node-v8.11.3-linux.x64.tar.xz
But on this command I get this error:
[root@web ~]# tar -C /usr/local --strip-components 1 -xJf node-v8.11.3-linux.x64.tar.xz
tar (child): node-v8.11.3-linux.x64.tar.xz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
[root@web ~]#
####################################