DEV Community

Cover image for You Finished Building. Now Where Do You Actually Host It?
Muhammad Usman
Muhammad Usman

Posted on

You Finished Building. Now Where Do You Actually Host It?

Every developer hits this wall.

You've written the code. It works on localhost:3000. A friend asks to see it — and you suddenly realize you have no idea how to put it on the internet. So you open a new tab and start Googling. Thirty minutes later, you're drowning in options: Vercel, Netlify, Railway, Render, Heroku, DigitalOcean, Hostinger... and zero context for which one actually makes sense for your project.

Nobody teaches this part. Tutorials take you from zero to a working app, then quietly skip the "now ship it" step. This post is the one I wish had existed when I was standing in that exact spot.


Step 1: Understand what kind of project you have

Before you even look at a single pricing page, you need to be honest about your stack. The hosting market has split into two very different worlds — and confusing them will cost you money or headaches.

Pure frontend / static site

If your project is a React app, a Vue SPA, a Next.js static export, or plain HTML/CSS/JS with no persistent backend — you're in the easiest category.

Vercel and Netlify are your best starting point. Both have generous free tiers, Git-based deploys, and zero infrastructure management. Push to GitHub, it's live. For side projects and portfolios, this is genuinely hard to beat at zero cost.

Full-stack / backend projects

This is where decisions get more interesting. If you have:

  • A Node.js / Express server
  • A Next.js app with API routes (not static export)
  • A PHP backend or Laravel app
  • A WordPress site
  • Anything that runs persistent server-side code

...then free tiers shrink fast, and you need to think about what kind of managed environment you want.


The options honestly compared

Platform Best for Starting price Node.js PHP/WP Notes
Vercel / Netlify Static & JAMstack Free Serverless only Usage-based pricing at scale
Railway / Render Node, Python backends ~$5/mo Bills by usage
Hostinger Business Node.js + PHP + WP ~$3/mo Flat pricing, no usage spikes
DigitalOcean VPS Full server control $6/mo You manage everything

What changed recently — and why it matters

For a long time, the developer hosting market was essentially split:

  • Vercel/Netlify for frontend-first JavaScript projects
  • VPS or PaaS for anything with a real backend

The frustrating gap was that platforms like Vercel use usage-based billing. There's a now-infamous case of a Netlify user receiving a $104,500 bill after a DDoS attack caused a bandwidth spike. Even without extreme cases, a modest Next.js app can look affordable for months and then jump from $40 to $200+ after a traffic surge.

Hostinger just closed that gap. In late 2025, they launched fully managed Node.js hosting across their Business and Cloud plans — with flat, predictable monthly pricing. No usage-based fees. No surprise bills.

This is a meaningful shift. You can now host a Node.js web app — React, Next.js, Vue, Express, NestJS, Nuxt — on the same plan as your PHP projects, for a fixed monthly rate, without touching a server config.


What Hostinger's Node.js hosting actually looks like

Here's what you get on the Business plan (the sweet spot for most developers):

  • Deploy from GitHub — every commit auto-redeploys to production
  • Or upload a ZIP file manually if you prefer
  • Select your Node.js version directly from hPanel
  • Build output is handled automatically — no manual reverse proxy setup
  • Environment variables managed through the dashboard
  • CPU, RAM, and I/O usage graphs built in
  • LiteSpeed web server (noticeably faster than Apache for most workloads)
  • NVMe SSD storage
  • Free SSL (auto-renews)
  • Free domain for the first year
  • SSH access
  • PHP 7.4 through 8.3 — switchable from the dashboard
  • Git integration for PHP projects too

Supported frameworks include: Next.js, React, React Router, Vue.js, Angular, Vite, Parcel, Preact, Express.js, NestJS, Nuxt.js — with more on the way.

For WordPress and PHP: one-click installer, LiteSpeed cache, staging environment on Business plan and above.


The deployment flow (for a Node.js app)

If you're used to Vercel, Hostinger's flow is similar. Connect your GitHub repo from hPanel, pick your Node.js version, and it handles the build and deploy automatically. Every subsequent push redeploys.

# Alternatively, deploy via SSH if you prefer the old-school way
ssh u123456789@yourdomain.com
cd ~/domains/yourdomain.com/nodejs

# Pull latest
git pull origin main

# Dependencies are managed automatically,
# but you can also run npm commands manually
npm install
Enter fullscreen mode Exit fullscreen mode

For PHP/Laravel projects, the flow is familiar:

ssh u123456789@yourdomain.com
cd ~/domains/yourdomain.com/public_html

git clone https://github.com/you/your-app.git .
composer install --no-dev --optimize-autoloader
cp .env.example .env
php artisan key:generate
php artisan migrate --force
Enter fullscreen mode Exit fullscreen mode

When Hostinger is the right call

  • You're building a full-stack Node.js app and want flat pricing with no usage surprises
  • You're building a PHP/Laravel project and want LiteSpeed performance without managing a VPS
  • You're building a WordPress site as a developer (staging, SSH access, Git deploys — it's all there)
  • You want one plan that handles multiple project types (Node + PHP + WP) without juggling multiple platforms
  • You want predictable monthly costs — especially important when building for clients

When to look elsewhere

  • Pure static sites with no backend → Vercel or Netlify (free tier is genuinely great here)
  • You need full root access and want to configure everything yourself → DigitalOcean or Hetzner VPS
  • Python-heavy backend (Django, FastAPI) → Railway or Render have better Python support
  • Enterprise-scale traffic with complex infrastructure → you probably already know what you need

The honest summary

The "which hosting do I pick" decision really comes down to this:

What type of project is it, and do I want to manage infrastructure or not?

If you want managed hosting — where deploys are handled, SSL auto-renews, and you never SSH into a server to restart a process at 2am — then Hostinger now covers the full stack. Node.js, PHP, WordPress, all on the same dashboard, flat pricing.

The Business plan starts around $3/mo on a longer-term commitment. That's cheaper than a Railway hobby plan and significantly cheaper than Vercel once you're past the free tier.

I've been using it for a mix of PHP and Node projects and the thing I notice most is what I don't have to think about — which is exactly what you want from managed hosting.


If you want to check it out, I have a referral link that gives an extra 20% discount: hostinger.com. Affiliate disclosure: I earn a small commission at no extra cost to you. I only share tools I actually use.

Top comments (0)