Report this

What is the reason for this report?

Where is node.js installed on one-click droplet? Where do I put my server code?

Posted on November 24, 2016

It’s my first time using DigitalOcean and I just created a node.js 6.9.1 one-click droplet. I’m able to connect to it via SFTP.

I’m wondering:

  • where is node located on disk?
  • where should I put my server code?
  • how do I run node on this droplet?

Cheers!

Paul



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!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi.

You should be able to call Node.js by executing nodejs (if that’s not working it’s node, but I think default is nodejs, can’t check now).

To check version if you want:

  1. nodejs --version

To check where is it installed, which will help you. It’ll return where binary is located:

  1. which nodejs

You can put code anywhere where you want. Then you start it with:

  1. nodejs app.js

As this is working until you close session, you probably want to setup pm2 or forever. It’ll help you to run node apps as a service. DigitalOcean has great tutorial on this topic, covering everything you’ll need - How To Set Up a Node.js Application for Production on Ubuntu 16.04.

This comment has been deleted

The developer cloud

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

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.