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.

I have a NodeJS server that I want to run on a VPS on Digital Ocean. I log in as usual and I basically follow these steps:
git clone myname@mygitrepo.git
cd myfolder/server
nodejs server.js &
_____________________
Express listening on port 9099
I can now access my NodeJS on the server. But as soon as I close the SSH connection, the NodeJS server dies. How can I make the NodeJS run even when I close down my session?
/P