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

推荐订阅源

Cloudbric
Cloudbric
T
Threat Research - Cisco Blogs
Simon Willison's Weblog
Simon Willison's Weblog
AWS News Blog
AWS News Blog
P
Privacy & Cybersecurity Law Blog
H
Help Net Security
云风的 BLOG
云风的 BLOG
G
GRAHAM CLULEY
Spread Privacy
Spread Privacy
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
A
Arctic Wolf
Project Zero
Project Zero
Engineering at Meta
Engineering at Meta
P
Privacy International News Feed
Blog — PlanetScale
Blog — PlanetScale
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
The Register - Security
The Register - Security
Recorded Future
Recorded Future
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
C
Cisco Blogs
PCI Perspectives
PCI Perspectives
Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
A
About on SuperTechFans
W
WeLiveSecurity
GbyAI
GbyAI
V
Vulnerabilities – Threatpost
The GitHub Blog
The GitHub Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Check Point Blog
Y
Y Combinator Blog
月光博客
月光博客
Scott Helme
Scott Helme
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
U
Unit 42
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Threatpost
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Google Online Security Blog
Google Online Security Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cisco Talos Blog
Cisco Talos Blog
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 司徒正美

Flavio Copes

Workers Cache: a cache in front of your Cloudflare Worker Cloudflare Drop: drag a folder, get a live site 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? 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)
Sitebase: all the features your website needs, in one place
Flavio Copes · 2026-07-09 · via Flavio Copes

By Flavio Copes

I'm building sitebase.dev: waiting lists, forms, newsletter signups, analytics, uptime monitoring and more, embedded in any site with one script. Currently in private beta.

~~~

In the past few days / weeks I built Sitebase.

Sitebase is “the operating system for your website”: all the small features every site eventually needs — waiting lists, newsletter signups, contact forms, testimonials, analytics, uptime monitoring — served from one place, with one embed script.

It’s currently in private beta. Signups are not open yet. But I use it myself, on my own sites, every day — the waiting list on the Sitebase homepage is a Sitebase widget.

Why I built it

Every site I ship needs the same things.

A waiting list before launch. A newsletter signup. A contact form. Some analytics. Maybe testimonials, a cookie banner, a status page.

The standard answer is a separate SaaS for each: one tool for forms, one for analytics, one for testimonials, one for uptime, one for cookie consent. Ten subscriptions, ten dashboards, ten scripts slowing down your site.

I wanted one subscription and one script. You add a feature from the dashboard, copy a snippet, done.

There’s a second reason, and it’s the more interesting one: AI agents are building more and more websites. An agent can scaffold your site in minutes, but it can’t run a newsletter or store form submissions — that needs a backend. Sitebase is designed to be that backend, and to be installable by the agent: it ships agent-readable docs at /llms.txt, and every embed snippet comes with a copy-paste prompt you can hand to Cursor or Claude Code to do the installation for you.

What’s in it

The feature list has grown quite a bit:

  • Forms: contact forms, waiting lists, newsletter signups with double opt-in, lead magnets with gated file downloads, and a full custom form builder with multi-step forms and file uploads
  • Social: testimonials with an approval flow (collect via a form, display as a wall), social proof toasts fed by real capture events
  • Data: cookieless, privacy-first visitor analytics (Plausible-style), custom events, and funnels
  • Site utilities: uptime monitoring with a public status page, countdown timers, a GDPR-proof cookie banner with script gating, generated legal pages, even a careers page with applications

Everything is embeddable with a script snippet on any site. For platforms that strip scripts, like Notion, every feature also has a hosted embed URL you can iframe.

How I built it

Sitebase runs entirely on Cloudflare, and it uses almost the whole platform.

The app is Astro SSR on Cloudflare Workers, with htmx and Alpine.js for interactivity — the AHA stack again. The public embed endpoints bypass Astro entirely: a Hono app handles them on a fast path, so a widget render is served from KV with zero database queries.

The data layer is my favorite part: every customer gets their own D1 database, provisioned at signup in the region they choose. Tenant isolation at the database level, not the row level.

Around that: Durable Objects for rate limiting, Queues for background work like notification emails and analytics maintenance, R2 for file uploads, Cron Triggers for uptime checks and nightly cleanup, and Turnstile on every form. Auth is magic links via Resend, billing is Polar, deploys go through wrangler.

And like StackPlan, it was built working with Cursor agents — with a strict test-first workflow this time. The repo has a devlog where every change is recorded, which turned out to be one of the best decisions of the project.

When can you use it?

Not yet — and that’s on purpose.

Sitebase handles other people’s form submissions, subscribers, and analytics data. I want to run it in production myself for a while, harden it, and get the compliance and billing parts exactly right before opening the doors.

It will be a paid product, priced per website, with early customers locking in lower prices forever.

If you want in when it opens, there’s a waiting list on sitebase.dev. Served by Sitebase, naturally.

~~~

Related posts about news: