Skip to content

Instantly share code, notes, and snippets.

@Nazariy
Last active August 20, 2024 03:28
Show Gist options
  • Save Nazariy/bf8a27c5e3b50914fe41f68e0791c33c to your computer and use it in GitHub Desktop.
Save Nazariy/bf8a27c5e3b50914fe41f68e0791c33c to your computer and use it in GitHub Desktop.
Installing Node.js on GoDaddy Shared Hosting

Installation

Disclaimer: I take no responsiblity for any damages or any other liability. These are only the steps that I took, if you follow them, you do so at entirely your own risk.

Step 1: Get Shell Access

First access you server’s shell through SSH. Instructions for cPanel are here. I’m on Windows 10, so I used PuTTY.

Step 2: Check for Previous Installs

By the time you’re reading this, GoDaddy may already install Node.js. So, lets make sure node, npm or nvm are not already installed. In the bash shell enter:

which node

which npm

which nvm

If they return nothing you’re good to carry on.

Step 3: Install Node Version Manager

Node Version Manager allows Node.js installation without the need for root access via the sudo.

I installed this in my home directory i.e. /home/username/ to get here you can enter. To install enter in bash:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash

Check the NVM GitHub page for instructions on installing a newer version

To make sure it’s installed enter

nvm --version

Step 4: Installing Node.js

Now we can get around to installing Node.js . To install the latest version enter in bash:

nvm install node

You can now set this as the default via bash:

nvm alias default node

To check that worked enter in bash:

node -v

npm -v

Both should return their versions. Before we get our hopes up, we’ll likely need to do some configuration.

Configuration

Once I’d finally got Node.js installed I encountered problems running NPM packages globally. The solution was to add some lines to environment variables.

Step 5: Check NPM Globals

The default location for global packages is home/yourusername/local/bin. You’ll be able to see where your global packages are installed. To check if that’s needed enter in bash:

npm list -g

If you’re receiving the message along the lines of not found in $PATH you will be unable to run global packages.

Step 6: Add to Bash Startup

To fix that add the following line to the file .bashrc which is located in your home directory (remember to alter it if your global package directory is different): export PATH="$PATH:$HOME/local/bin"

Resources

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment