Which Hostinger plan do you need for a Next.js app?
Three plans can run a Next.js app, and the difference between them is not features — all three give you a real Node process, Git deploys and managed SSL. The difference is how much memory your build gets, how much traffic the plan absorbs before it slows down, and how many apps you can park on one bill.
Here is how to pick in about two minutes, plus the point where the right answer stops being a shared plan at all.
Disclosure: the Hostinger links here are referral links, and we host wacrm on the Business plan. Specs and prices were read from Hostinger's own pages in August 2026 — check them before you buy.
The three plans
Plans at a glance
All three run a Next.js app the same way — a real Node process, Git deploys, managed SSL. What changes is how much memory the build gets and how many apps you can park on one bill.
Premium
$2.99/mo
On a 48-month term · renews at $10.99/mo
- Node.js apps
- 5 web apps
- Websites
- 3 websites
- Memory
- 2 GB RAM
- CPU
- 1 CPU core
- Storage
- 20 GB SSD
- Bandwidth
- Unlimited
- Backups
- Weekly
A side project or a first deploy. 2 GB of RAM is the floor for a Next.js production build — it works, but a heavy build can get tight.
Get PremiumBusiness
Pick thisSometimes listed as “Unlimited”
$3.99/mo
On a 48-month term · renews at $16.99/mo
- Node.js apps
- 5 web apps
- Websites
- 50 websites
- Memory
- 3 GB RAM
- CPU
- 2 CPU cores
- Storage
- 50 GB NVMe
- Bandwidth
- Unlimited
- Backups
- Daily
The default recommendation. Enough memory to build comfortably, daily backups, and room for five apps — a CRM, a marketing site, and staging on one bill.
Get BusinessCloud Startup
$7.99/mo
On a 48-month term · renews at $25.99/mo
- Node.js apps
- 10 web apps
- Websites
- Unlimited websites
- Memory
- 4 GB RAM
- CPU
- 4 CPU cores
- Storage
- 100 GB NVMe
- Bandwidth
- Unlimited
- Backups
- Daily + on demand
Real traffic, or an agency running client apps. Four cores means a build no longer competes with serving requests.
Get Cloud StartupWhen shared hosting is the wrong answer. If you need root, a background worker, Redis, Docker, or more than a few gigabytes of memory, stop buying bigger shared plans and take a VPS. KVM 2 is $8.99/mo on a 24-month term (renews at $14.99/mo) for 2 vCPU, 8 GB RAM and 8 TB traffic — you administer it yourself.
Plan specs and prices read from Hostinger's own pricing pages in August 2026. Promotional rates require the prepaid term shown; shorter terms cost more per month.
Start with the build, not the traffic
The counter-intuitive part of sizing a Next.js host: the peak memory moment is
not serving requests, it is next build. The build type-checks and compiles the
whole project at once, and a large app can use several times more memory than the
running server ever will.
That makes it the deciding number:
- Under 2 GB peak — Premium is fine, and it is the cheapest way to put a small app on a real domain.
- 2–3 GB peak — Business. This is where most production apps land, and the extra core means a build no longer starves the running app.
- Consistently tight, or a monorepo — Cloud Startup, or build in CI and deploy the output.
Measure it rather than guessing: run npm run build locally and watch memory in
Activity Monitor or htop. If a deploy ever dies without a useful error
message, memory is the first suspect, not the framework.
Then count the apps
App slots are the quiet reason to skip the cheapest tier. Most projects are not one app:
- the product itself
- a marketing site or landing page
- a staging copy you can break safely
Premium and Business both allow five web apps; Cloud Startup allows ten. Since each slot is an independent Node application with its own domain, that is three metered projects on a metered platform and one line on this bill.
Then think about traffic
Bandwidth is unlimited on all three plans, and there is no per-gigabyte charge — that is the meaningful difference from a metered host, where traffic converts directly into invoice.
What is finite is CPU and memory. A spike does not produce an overage line, it produces slower responses. So the traffic question is not "how many gigabytes" but "how much concurrency":
- A few thousand visits a day — Business handles it without drama.
- Sustained real traffic, or bursts — Cloud Startup's four cores are the cheapest fix, and moving up is a plan change rather than a migration.
- Traffic you cannot predict at all — a shared plan is the wrong shape. Either take a VPS you can size, or use a platform that autoscales and accept the metered bill. Hostinger vs Vercel works through that trade with real numbers.
What every plan includes
Worth knowing before you compare against a bare $5 container elsewhere:
- A free domain for the first year, and unlimited free SSL certificates.
- GitHub integration — push to your branch and it builds and deploys.
- Managed MySQL, if the app needs a database on the same account. (wacrm uses Supabase for Postgres instead, so this one goes unused there.)
- Cron jobs at any interval, against a persistent process.
- Email on your domain, backups (weekly on Premium, daily above it), and 24/7 support.
- A 30-day money-back guarantee, which is the part that makes trying it low-risk.
When to stop buying shared plans
Be honest about this rather than upgrading twice. Move to a VPS when you need something the shared platform does not do, not just more of what it does:
- root access, or system packages you install yourself
- Docker, or a runtime that is not on the platform
- Redis, a queue, or any long-running background worker
- more than about 4 GB of memory
KVM 2 is $8.99/month on a two-year term ($14.99 at renewal) for 2 vCPU, 8 GB of RAM and 8 TB of traffic. The trade-off is real: OS updates, the web server, and backups become your job.
What to check at checkout
- The term. The advertised price requires prepaying it — usually 48 months. Shorter terms cost more per month.
- The renewal price. $10.99, $16.99 or $25.99 a month for Premium, Business and Cloud Startup. Budget with this number, not the promotional one.
- The data centre. Pick the one nearest your users; a shared plan serves from one region and you will feel the wrong choice.
- Whether the plan name matches. The $3.99 tier appears as "Business" on the web-apps page and "Unlimited" on some others. Same plan; check the specs, not the label.
Deploying wacrm specifically
wacrm is a Next.js app with Supabase behind it, so Business is the recommendation: enough memory to build, daily backups, and slots left for a marketing site and staging. The Hostinger deployment guide walks through creating the app, connecting your fork, and setting environment variables, and automations and cron covers the scheduled jobs.
Ready to pick one? The Business plan is the default choice for a production Next.js app, and the money-back window means a wrong guess on plan size is reversible.
Frequently asked questions
Which Hostinger plan is best for a Next.js app?
Business is the sensible default: 3 GB of RAM and two CPU cores give a Next.js production build enough headroom, daily backups are included, and five web apps on one plan cover an app, a marketing site and a staging copy. Premium works for a single small project — its 2 GB of RAM is the practical floor for `next build`. Cloud Startup, with four cores and 4 GB, is the one to pick if the app has real traffic or you are hosting client work.
How much RAM does a Next.js build need?
More than the app needs to run. `next build` type-checks and compiles the whole project at once, so it is the memory high-water mark — 2 GB is workable for a small app, and a large one with many routes can exceed it. If a build dies without a useful error, memory is the first thing to suspect: build locally or in CI and deploy the output, or move up a plan.
Do Hostinger plans really include unlimited bandwidth?
The managed Node.js plans advertise unlimited bandwidth, and there is no per-gigabyte charge — which is the meaningful difference from a metered host, where traffic turns directly into invoice. What is finite is the CPU and memory of your plan: a traffic spike does not produce an overage line, it produces slower responses until you move up a tier. That trade — a fixed price with a ceiling, instead of a variable price without one — is the whole shape of the decision.
When should I use a VPS instead of shared hosting?
When you need something the shared platform does not offer rather than more of what it does: root access, Docker, a long-running background worker, Redis, or several gigabytes of memory. A KVM VPS starts around $8.99/month on a two-year term for 2 vCPU and 8 GB of RAM, and the honest trade-off is that you become the sysadmin — OS patches, the web server, and backups are yours.
Why is the renewal price higher than the advertised one?
Because the advertised price is a promotional rate that requires prepaying a long term — typically 48 months on shared plans. After that first term the plan renews at the standard rate ($10.99, $16.99 or $25.99 a month for Premium, Business and Cloud Startup). Budget with the renewal number: it is the price you will pay for most of the life of the site, and any comparison that quotes only the promotional rate is not one you should trust.
Run your own WhatsApp CRM
Fork it, self-host it, own your data. No per-agent pricing — you only ever pay Meta for messaging. The fastest route is Managed Node.js Hosting: connect your fork and it builds and deploys itself.