Sign up free
reactstatic site hostingclientsReact

How to Host a React Site for Clients

Host your React site and share it with clients using a permanent link. No Git, no CI/CD — upload your build folder and get a link that never changes.

How to Host a React Site for Clients

You have built a React site and you need to share it with clients. The problem with standard deployment tools is that every new build creates a new URL — so every time you update the site, you have to resend the link. Clowd solves this with a permanent URL that stays the same across every update, making it the right tool for sharing a site with clients.

This guide covers exactly how to do it with Clowd — no Git required, no CI/CD pipeline, no configuration files. Upload your build, get a permanent link, share it with anyone.


Why Most Hosting Tools Are Overkill for This

Vercel, Netlify, and GitHub Pages are excellent tools for production engineering workflows. But they come with a cost: you need a Git repository, a connected account, environment variable configuration, and a deployment pipeline just to put a site live. For sharing a site with clients, that overhead is unnecessary.

Vercel and Netlify generate a new URL on every deploy. If you share a preview link with a client or stakeholder, that link breaks the moment you push a new build. You end up resending links constantly and your audience has no idea which URL is current.

GitHub Pages requires a repository and Git knowledge. For non-technical users, designers, or anyone who just wants to put a site live quickly, this is a significant barrier. You should not need to understand branches and commits to host a static site.

Configuration files add friction. vercel.json, netlify.toml, _redirects — every platform has its own configuration format. For simple static sites, none of this should be necessary.

No file delivery alongside hosting. If you need to share a PDF, ZIP, or other asset alongside your hosted site, you need a separate tool. Clowd handles both from the same dashboard.


How Clowd Handles sharing a site with clients

Clowd takes a different approach. You upload your build folder as a ZIP — or paste HTML directly — and get a permanent link immediately. No Git, no configuration, no pipeline.

Permanent URL by default. Every site you host on Clowd gets a permanent link that never changes. When you upload a new build, the URL stays the same. Your audience always has the current version at the same address.

No login required to view. Anyone with the link can open your site instantly — no Clowd account required. This is essential for client previews, stakeholder reviews, and public-facing sites.

Supports any static framework. React, Next.js (static export), Svelte, SvelteKit, Astro, Vue, Nuxt, Vite, Gatsby, Remix (static), Angular, or plain HTML — if it builds to a static output, Clowd hosts it.

Three upload methods. Drop a ZIP of your build folder, upload individual HTML files, or paste HTML directly. Whatever your workflow, there is a path that fits.

Free custom domain. Map your own domain to any Clowd site — including on the free plan. Your site lives at yourname.com instead of a random hosting URL.

Version history. Every previous build is stored. Roll back to any prior version instantly — no redeployment needed.


Step-by-Step: Hosting React on Clowd

Step 1: Build your React project. Run your build command to generate the static output. For most frameworks this produces a dist/, build/, or out/ folder containing your HTML, CSS, and JS files.

Step 2: ZIP the output folder. Compress your build output into a single ZIP file. On macOS: right-click the folder and select “Compress”. On Windows: right-click and select “Send to > Compressed folder”.

Step 3: Upload to Clowd. Sign in to clowd.host, create a new site, and drop your ZIP file. Clowd extracts it and serves it immediately. You get a permanent link within seconds.

Step 4: Share the link. Copy the permanent link and share it with whoever needs it — clients, stakeholders, reviewers, or the public. They open it in any browser, no account required.

Step 5: Update without changing the link. When you have a new build, upload the new ZIP to the same Clowd site. The URL stays the same. Everyone who has the link automatically sees the updated version.

Step 6: Add your custom domain (optional). In your Clowd dashboard, go to domain settings and add your custom domain. Point your DNS to Clowd and your site is live at your own URL — free on the free plan.


What You Can Host on Clowd

Clowd supports any static site output. Here is what that covers in practice:

React apps built with Create React App, Vite, or custom webpack configs. Run npm run build and upload the build/ folder.

Next.js static exports using next export or output: export in next.config.js. Upload the out/ folder.

Svelte and SvelteKit with the static adapter. Run npm run build and upload the build/ folder.

Astro sites with output: static. Run npm run build and upload the dist/ folder.

Vue and Nuxt with static generation. Run npm run generate and upload the dist/ folder.

Vite projects of any kind. Run npm run build and upload the dist/ folder.

Gatsby sites. Run gatsby build and upload the public/ folder.

Plain HTML. Upload a single HTML file, a folder of HTML files, or paste HTML directly into the editor.

Angular apps with ng build --configuration production. Upload the dist/project-name/ folder.


Clowd vs Other Hosting Options

FeatureClowdVercelNetlifyGitHub Pages
Permanent URL across deploysYesNoNoYes
No Git requiredYesNoNoNo
No login to viewYesYesYesYes
Custom domain freeYesYesYesYes
File delivery alongside hostingYesNoNoNo
Version history with rollbackYesYesYesVia Git
Upload ZIP directlyYesNoYesNo
Paste HTML directlyYesNoNoNo
Analytics built inYesPaidPaidNo

Common Mistakes When Hosting Static Sites

Uploading the source folder instead of the build output. Always upload the compiled output — dist/, build/, out/, or public/ — not your src/ folder. The build output contains the optimised HTML, CSS, and JS that browsers can render directly.

Forgetting to configure your router for client-side routing. If your React or Vue app uses client-side routing, make sure your build is configured to serve index.html for all routes. Clowd handles this automatically for single-page apps.

Using a new deployment for every update instead of updating in place. With Clowd, you upload to the same site and the URL stays the same. Do not create a new site for every build — update the existing one.

Not adding a custom domain. A random hosting URL looks unprofessional when sharing with clients or publishing publicly. Clowd gives you a free custom domain — use it.

Sharing preview links that expire. Vercel and Netlify preview URLs are tied to specific deployments and can become stale. With Clowd, the link is always the current version.



Frequently Asked Questions

How do I share a React site with clients?

Build your React project, upload the output folder as a ZIP to Clowd, and share the permanent link. Clients open it in any browser — no account required.

No. Clowd gives you a permanent URL. Upload a new build to the same site and the URL stays the same. Clients always see the latest version at the same link.

Do clients need an account to view the site?

No. Anyone with the link can open your React site instantly — no Clowd account, no login, no friction.

Can I add a custom domain to my React site?

Yes. Custom domain mapping is free on the Clowd free plan. Your React site can live at your own domain instead of a random hosting URL.

Can I track when clients view my React site?

Yes. Clowd’s built-in analytics show you when your link was opened — no third-party trackers required.


Get Started

Hosting a React site and sharing it with clients takes less than two minutes on Clowd.

  1. Build your React project and ZIP the output folder
  2. Upload to Clowd — free, no credit card
  3. Copy the permanent link and share it
  4. Update anytime — the link stays the same

Host your React site on Clowd for free

Try Clowd for free

Share files with permanent links. Update anytime, same URL.

Sign up free

Related Articles