Report this

What is the reason for this report?

How I can run a coder-server instance and test a express.js app in the same droplet?

Posted on October 25, 2019

Hi, I’ve deployed a coder-server instance in a droplet, this is in my opinion the best way to have an cloud-based dev environment cause we can run VSCode on the web, everything ok whit coder-server.

My problem comes when I try to run a sample-app whit node and express, the app runs on port 3000 ok apparently, but seems that the droplet doesn’t have open that port and in consequence the browser can’t reach the express.js server.

Can somebody please help me to solve this situation?

Thanks.



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.

Hello,

As the coder-server image from the marketplace uses Ubuntu, you could try opening port 3000 through the default Ubuntu firewall. First check if the firewall is active:

sudo ufw status

If the firewall is active, then you can open the port with:

sudo ufw allow 3000

For more information, you could take a look at this article here:

https://www.digitalocean.com/community/tutorials/ufw-essentials-common-firewall-rules-and-commands

Hope that this helps! Regards, Bobby

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.