Cloud hosting and managed platforms are the newest broad category, and the one most beginners actually use today without necessarily calling it by this name — Vercel, Netlify, Railway, and similar services all fall here. The shared idea: the underlying server is abstracted away almost entirely. You deploy code; the platform figures out where and how to run it.
With shared hosting or a VPS, you are always aware there is a specific server — you can name it, log into it, configure it. With most cloud and managed platforms, that concept mostly disappears. You connect a Git repository or upload a build, and the platform runs it somewhere, scales it automatically, and generally does not expose which physical machine is involved at all.
Modern React and Next.js hosting (this site itself runs this way) is built almost entirely around this model — connect a repository, and every push deploys automatically, with no server ever manually touched. Node.js APIs, static sites, and increasingly WordPress-as-a-managed-service all have strong offerings in this category too.
Distinct from general cloud platforms, managed WordPress hosting is shared or cloud infrastructure specifically tuned for WordPress — with automatic updates, WordPress-specific caching, and specialised support, at a higher price than generic shared hosting but usually a smoother experience for a WordPress-only site.
The convenience is real: no server administration, automatic scaling, and deployment that's often as simple as pushing code to a Git repository. What you give up is deep control — you generally cannot install arbitrary system-level software, and you're working within whatever the platform's conventions and limits are, rather than a fully open server.
This category overlaps heavily with what "the edge" and "serverless" mean in practice, both covered properly in their own lessons later. For now, the useful mental model is simple: cloud and managed platforms trade some control for a great deal of convenience, which is usually a good trade for a student project or a small business site.
A React portfolio project deploys naturally to this kind of platform, often on a free tier — the deploying-a-react-app lesson later in this category walks through it directly. Node.js APIs fit well here too. WordPress and plain PHP sites more often still use shared hosting or managed WordPress hosting specifically, simply because that ecosystem grew up around traditional hosting first.