Docs / App Marketplace / How to Deploy Node.js from the Marketplace

How to Deploy Node.js from the Marketplace

By Admin · Feb 25, 2026 · Updated Apr 23, 2026 · 163 views · 1 min read

Get a Node.js development environment ready to run.

What's Included

  • Node.js LTS with npm
  • PM2 process manager
  • Nginx reverse proxy configured

After Deployment

node -v
npm -v
pm2 list

Running Your App

# Upload your app files
cd /var/www/myapp
npm install
pm2 start app.js --name myapp
pm2 save

Nginx is configured to proxy requests to port 3000 by default.

Was this article helpful?