Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Dear Kathleen - this was super useful. Thank you ! I had issues installing on my ubuntu laptop and these instructions really made it work for me - so THANKS a TON!! It’s kind and generous people like you who help more people like me overcome the fear of programming and give us the courage to try.
I had to use nvm install v8.11.1 instead of nvm install 8.11.1. I’m still new so don’t know if that’s just me or if that’s a typo. Great information though, just almost panicked when it didn’t load without the v before the version number.
This article is awesome 🙌Y’all are great!
It would so useful as a quickstart, so I could quickly get my node installation up and running 🏃♀️😄
You must change command for install nodeJS to…
‘sudo apt-get install -y nodejs’
Recently, I created my very first droplet and used this tutorial to install node on it. (I also did what is recommended in https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-18-04.)
After that all I had to do was the following:
npm install --save express npm install --save handlebars
My Node/Express app developed under Windows and uploaded to my droplet ran correctly. I am amazed that things were so easy.
Thanks for this tutorial.
For installing NPM recently, had to follow the following steps:
sudo apt-get install nodejs-dev node-gyp libssl1.0-dev
and
sudo apt-get install npm
Reference: https://askubuntu.com/a/1092849
In the example command, you have used version 10 which is not supported anymore.
curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh
Please update it to version 16. I mistakenly copy pasted and installed v10 and had to update to 16 again.