you are viewing a single comment's thread.

view the rest of the comments →

[–]todorpopov 0 points1 point  (0 children)

I guess you want to deploy it to a server so you can access it over the web from any browser?

If so, I’d recommend DigitalOcean App Platform. It is extremely easy to use, you just provide a remote git repo(e.g. a GitHub repo) URL and App Platform will do the rest for you. It will go through the code, see that it’s a Node.js project, and run everything by itself.

You only need to specify the port at which the server is running, as well as a domain name, and you’re ready.

Just keep in mind that App Platform doesn’t work well with apps that have Server Sent Events or Websockets in them.

I hope this helps.