惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
L
LINUX DO - 最新话题
P
Proofpoint News Feed
Cyberwarzone
Cyberwarzone
Know Your Adversary
Know Your Adversary
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
L
Lohrmann on Cybersecurity
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Security Latest
Security Latest
T
The Exploit Database - CXSecurity.com
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Privacy & Cybersecurity Law Blog
K
Kaspersky official blog
The Last Watchdog
The Last Watchdog
Webroot Blog
Webroot Blog
Scott Helme
Scott Helme
T
Threat Research - Cisco Blogs
C
Cyber Attacks, Cyber Crime and Cyber Security
WordPress大学
WordPress大学
L
LINUX DO - 热门话题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
V
Visual Studio Blog
O
OpenAI News
AI
AI
Hacker News: Ask HN
Hacker News: Ask HN
V2EX - 技术
V2EX - 技术
GbyAI
GbyAI
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Simon Willison's Weblog
Simon Willison's Weblog
S
Schneier on Security
Spread Privacy
Spread Privacy
Y
Y Combinator Blog
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
F
Fortinet All Blogs
C
CERT Recently Published Vulnerability Notes
T
The Blog of Author Tim Ferriss
C
Check Point Blog
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
N
News and Events Feed by Topic
Project Zero
Project Zero
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
B
Blog
G
Google Developers Blog

Flavio Copes

Workers Cache: a cache in front of your Cloudflare Worker Temporary Cloudflare accounts: agents can now deploy without signing up Moondream 3.1 on Workers AI: fast vision at the edge inferencecost.dev: what will AI inference cost you at 10k users? Sitebase: all the features your website needs, in one place StackPlan: figure out where to deploy your app, and what it How the Cloudflare Pages build cache works The Summer of Code How I generate an Open Graph image for every post New: 90 free tools for developers How I added search to my static site with Pagefind How to rebuild a Cloudflare site on a schedule Cloudflare Email Workers: run code when an email arrives Cloudflare Turnstile: stop bots without annoying CAPTCHAs Cloudflare Workers: secrets and environments Cloudflare Workers observability: logs and traces Cloudflare Analytics Engine: store and query metrics The AI Workshop (July 2026 cohort) Cloudflare Cron Triggers: run a Worker on a schedule Cloudflare Durable Objects: state that lives in one place Cloudflare Queues: run work in the background Cloudflare R2: object storage without egress fees Cloudflare KV: a key-value store for your Workers Cloudflare D1: a SQL database for your Workers Serving a website with Cloudflare Workers static assets Wrangler: the Cloudflare Workers command line tool Executor: one gateway to connect your AI agent to every tool Cloudflare Workers: your first serverless function Vercel eve: an open framework for building AI agents Flue: the open framework for building AI agents Val Town: write and deploy code in seconds A hands-on guide to The Agency, a collection of AI agents The AI Workshop (June 2026 cohort) The AI Workshop (May 2026 cohort) The AI Workshop (Apr 2026 cohort)
Cloudflare Drop: drag a folder, get a live site
Flavio Copes · 2026-07-09 · via Flavio Copes

By Flavio Copes

Cloudflare Drop deploys a static site by dragging a folder or zip into the browser. No account, no CLI. How it works and how it ties into temporary accounts.

~~~

Deploying a static site keeps getting simpler. Cloudflare just took it to the logical extreme.

Cloudflare Drop is a page where you drag a folder — or a zip — into the browser, and your site is live on Cloudflare’s global network. Seconds later you have a URL.

No account. No CLI. No git repo. No build step.

What is Drop?

Drop is a deployment tool for plain static sites: HTML, CSS, JavaScript, images.

You go to cloudflare.com/drop, drop a folder or a zip file, and Cloudflare uploads it and serves it from their edge. You get a live URL you can open and share right away.

That’s the entire workflow. There is nothing to configure.

Why does it exist?

Think about how many times you have a folder with an index.html and you just want to show it to someone.

The classic options all have friction. Pages wants a git repo or a CLI upload. A VPS wants ssh and nginx. Even “simple” hosts want a signup first.

Drop removes all of it. The demo you hacked together, the landing page mockup, the CSS experiment — folder in, URL out.

There’s a second reason, and it’s the more interesting one: this kind of frictionless deploy is built for the AI era. More on that below.

What about keeping the site?

A site you dropped isn’t tied to an account — there’s no account. It works like Cloudflare’s new temporary accounts: the deployment lives on a temporary account, and you get a claim link.

If you claim it, you sign in (or sign up) and the site becomes a normal, permanent deployment in your Cloudflare account. If you don’t claim it within the window, it expires and gets deleted on its own.

I like this model a lot. Throwaway by default, permanent by choice.

I wrote a separate post on temporary Cloudflare accounts — the same mechanism, but for agents deploying Workers from the CLI with wrangler deploy --temporary.

When to use Drop vs the real thing

Drop is for immediacy, not for production.

Use Drop when:

  • you want to show someone a static site right now
  • you’re testing how something behaves on a real URL (not file://)
  • you don’t have (or don’t want) a Cloudflare account yet

Use Workers static assets or Pages when:

  • the site has a build step (Astro, Vite, anything with npm run build — you can still drop the output folder, but you’ll want CI eventually)
  • you need a custom domain
  • you’re deploying more than once — at that point wrangler or a git-connected project is less work, not more

This site runs on Cloudflare Pages with git-connected builds, and I wouldn’t move it to Drop. But for one-off experiments, Drop is now the fastest path to a URL that I know of.

The bigger picture

Drop and temporary accounts shipped as part of the same push: removing signup as a prerequisite for deploying.

For humans, that’s convenience. For AI agents, it’s the difference between finishing the job and getting stuck — an agent can’t click through an OAuth flow in a dashboard.

~~~

Related posts about cloudflare: