
Summary
> 💡 "Just drag and drop a folder — and your website is instantly deployed across Cloudflare's global edge network."
💡 "Just drag and drop a folder — and your website is instantly deployed across Cloudflare's global edge network."
No account registration. No credit card. Public for 60 minutes, then it vanishes automatically — say hello to the "disappearing website."
On July 8, 2026, Cloudflare Drop — announced on X by Cloudflare's Brayden Wilmoth — went viral within hours.
412K views · 4,626 likes · 3,008 bookmarks — absolute fire.
This guide covers everything: how to use Cloudflare Drop, how it works under the hood, and the best real-world use cases.
🚀 What Is Cloudflare Drop? In a Nutshell
| Aspect | Detail |
|---|---|
| In one line | Deploy a website by dropping a folder into your browser |
| Account | Not required! First-timers don't need to sign up for anything |
| Pricing | Completely free (60-minute temporary deployment) |
| Lifetime | 60 minutes. Then auto-deleted (or "Claim" to make it permanent) |
| Delivery speed | Served in milliseconds from Cloudflare's global network (330+ cities) |
| Supported files | An entire folder or a ZIP file |
| Example URL | A temporary URL like https://random-name.cldflare.com/ |
🎯 Two Faces: Drop (UI) and Temporary Accounts (CLI)
Cloudflare Drop actually has two entry points.
① Browser version: cloudflare.com/drop/
👆 Just toss a folder in — the UI version.
Workflow:
1. Go to https://cloudflare.com/drop/
2. Drop your website folder (or a ZIP file)
3. Wait a few seconds
4. You get a URL like https://random-name.cldflare.com/
5. That's it — live to the world!
② CLI version: wrangler deploy --temporary
🤖 The command-line version — built for AI agents and developers.
# Temporary deploy with the Wrangler CLI
wrangler deploy --temporary
This one is more powerful: you can tweak your Worker code and re-deploy multiple times, all within the same temporary account.
📝 How to Use Cloudflare Drop — Step by Step
Step 1: What You Need
Just a plain HTML folder. Anything with this structure works:
my-website/
├── index.html
├── style.css
├── script.js
└── images/
└── logo.png
For static sites, HTML + CSS + JS alone is enough. Pre-built React or Vue folders work too.
Step 2: Deploy
Browser version:
- Open cloudflare.com/drop/
- Drag and drop your folder into the browser
- Wait for the upload to finish (a few seconds)
- Open the generated URL → You're live!
CLI version (Wrangler):
# Requires Wrangler 4.102.0+
npx wrangler@latest deploy --temporary
First-timers will see a message about the --temporary flag — the agent understands it automatically and runs the deployment.
Step 3: Verify
Just open the generated URL in a browser. It's served from Cloudflare's global edge, so it loads in milliseconds from anywhere in the world.
Step 4: Make It Permanent (Claim)
Within 60 minutes, click this link:
🔗 Claim URL: https://dash.cloudflare.com/claim/xxxxx
Sign up for Cloudflare (or log in), and your temporary account becomes your own permanent account. Not just your Worker — D1 databases, KV storage, and other resources come along for the ride.
After 60 minutes, everything is deleted automatically. If you like what you built, don't forget to Claim it.
🤖 AI Agent Integration (The Real Killer Feature)
The true power of Cloudflare Drop / Temporary Accounts is how they work with AI agents.
When You Let an AI Agent Handle It
# Example prompt for an agent
"Write a simple hello-world Cloudflare Worker in TypeScript,
deploy it with wrangler, and don't ask me questions — just do your best."
The agent runs the entire flow autonomously:
1. Writes the Worker code
2. Runs wrangler deploy --temporary
3. Curls the generated URL to verify it works
4. Fixes issues → re-deploys (unlimited within 60 min)
5. Returns the Claim URL to the human
What's different (the revolutionary part):
| Before | Cloudflare Drop |
|---|---|
| Account creation required | Not needed |
| Generate and configure API keys | Not needed |
| OAuth authentication flows | Not needed |
| Credit card registration | Not needed |
| 5–15 minutes to deploy | Seconds |
🏆 Top 7 Use Cases
① 🔥 Prototyping & Idea Validation (Most Recommended)
Perfect for those "I just want to see this idea come to life" moments.
Example: Instantly deploy a landing page you built at a hackathon
→ Share the URL with your team → Get feedback
→ If you love it, Claim it to make it permanent
② 🧪 Temporary Demo Sites
When you just want to show a client something real quick.
Example: Let a client check the progress of a site you're building
→ 60 minutes is plenty
→ Once approved, deploy to production
③ 🤖 AI Agent Validation Loop
Write → Run → Fix — at high speed.
AI coding agents (Cursor / Claude Code / Codex)
write code, deploy it, and verify the result automatically
→ You only check the final output
④ 🎓 Learning & Tutorials
Perfect for beginners who want to try Cloudflare Workers for the first time.
The account-registration barrier is gone —
"just try running something" is dramatically easier
⑤ 📸 Screenshots & Portfolios
When you just want to share how a site looks.
Drop a pre-built site folder
Send the URL — the other person sees it instantly
⑥ 🔄 CI/CD Preview Environments
Auto-generate a preview environment for every pull request.
Run wrangler deploy --temporary in your CI pipeline
→ A review URL is generated automatically
→ Auto-deleted after merge (60-minute rule)
⑦ 🕵️ Anonymous Publishing & Verification
When you want to publish something temporarily without identifying yourself.
No account needed, so publishing is fully anonymous
Ideal for non-sensitive verification content
⚠️ Caveats & Limitations
The 60-Minute Rule
Deployments are auto-deleted after 60 minutes. If you want to keep it, run the Claim process before time runs out.
Not for Production
Temporary deployments are for validation and preview only. For production sites, deploy through a regular Cloudflare account.
No Custom Domains
Temporary URLs only (*.cldflare.com). You need a permanent account to use your own domain.
Resource Limits
Temporary accounts have the same limits as the regular Free plan (Worker execution time, DB size, etc.).
❓ FAQ
❗ Do I really not need to register anything?
→ Yes, really. Nothing. Just drop a folder in your browser. You don't even need a Cloudflare account.
❗ What happens after 60 minutes?
→ It's automatically deleted. Your data is gone completely. If you want to keep it, register via the Claim URL.
❗ How large can my site be?
→ Currently, standard static sites (a few MB to tens of MB) are the target. Check Cloudflare's docs for specific limits.
❗ Does React / Next.js work?
→ Pre-built static files (out/ or build/ folders) deploy as-is. For apps that need SSR, use the Wrangler CLI version.
❗ Won't this be abused?
→ The 60-minute auto-delete design + Terms of Service provide protection. Cloudflare's moderation applies to spam and illegal content.
📋 Summary
Cloudflare Drop is a revolutionary tool that reduces the barrier to web deployment to zero.
Especially in the age of AI agents, removing the account-registration hurdle is monumental.
"Write it, then run it immediately" becomes the new normal — and the foundation for that is finally here.
| Scenario | Rating | One-liner |
|---|---|---|
| Prototyping & idea validation | Top Pick | Think of an idea → deploy instantly. Can't get better than this. |
| AI agent integration | Top Pick | The true value of Temporary Accounts. Infinite trial and error. |
| Temporary demos & sharing | Recommended | 60 minutes is plenty for a review. |
| Learning & tutorials | Recommended | No registration barrier — beginner-friendly. |
| Production use | Not Recommended | Deploy normally with a permanent account. |
👉 Cloudflare Drop: cloudflare.com/drop/ 👉 Official Blog (Temporary Accounts): Temporary Cloudflare Accounts for AI agents 👉 Original X Post (Brayden Wilmoth): Introducing Cloudflare Drop 👉 Wrangler Docs: developers.cloudflare.com/workers/wrangler
Read Next
- Claude Fable 5: Protect Your Financial Assets With AI Agents — A Practical Guide to AI-Powered Asset Management, Monitoring & Optimization (2026)
- Cloudflare Monetization Gateway Complete Guide: How to Put a "Pay-Per-Use" Price Tag on Web Pages, APIs & MCP Tools (2026)
- A Fable of Codexes Complete Guide: How to Build an Army of AI Workers Commanded by Claude (2026)
- GPT-Live Complete Guide: How OpenAI's Full-Duplex Voice AI Fundamentally Changes ChatGPT (2026)
- How to Use component.gallery to Dramatically Improve Your AI UI Prompts: A Visual Component Glossary (2026)
この記事をシェアする
Related articles

2026年7月19日
[2026] How to Dramatically Improve AI UI Generation with component.gallery! A Practical Guide to the Component Terminology Encyclopedia

2026年6月15日
ChatGPT vs Claude vs Gemini 2026: Ultimate Comparison! From Free to Paid — Complete Guide

2026年6月18日
Free AI Models Guide 2026: 8 Ways to Use Claude Opus 4.8, GPT-5.5 & Gemini 2.5 Pro for $0

2026年6月18日
Accio Work Complete Guide 2026: Alibaba-Partnered AI Agent Automates Sourcing, Store Building, and Sales

2026年6月19日
【2026】Ollama Complete Setup Guide: Running Local AI on a Mini PC

2026年6月23日
Blueprint.am Complete Guide 2026: "Claude for Hardware" Auto-Generates Wiring Diagrams, BOMs, and Assembly Instructions