Workers — serverless at the edge
Run Lanexio server functions on Workers close to the request path. It is a strong fit for low-latency rendering without a traditional Node.js server.
Learn moreCloudflare
Lanexio gives Astro teams a Cloudflare-first path for deployment, storage, routing, and operations. Start fast on Cloudflare, keep the application layer portable, and move later only if you want to.
$ npx lanexio create my-site --template saas --hosting cloudflare One command to scaffold an Astro project with the Cloudflare path preselected, then grow into a managed on-ramp if you want less setup work.
Get product updates, Cloudflare notes, and hosted-onboarding announcements.
Hybrid hosting worker templates and deployment helpers
Cloudflare D1 database patterns
Cloudflare KV patterns
Cloudflare R2 and Images patterns
Cloudflare Workers runtime patterns
Cloudflare Access authentication adapter
Privacy-first analytics and exports
AI content voice, humanization, and generation
Email capture, newsletters, and drip automation
Notification center and delivery queues
Hosting-aware snapshots and restore workflows
Domain and email diagnostics and monitoring
The Cloudflare path is optimized so new users can move faster, but the application layer still runs through the hosting abstraction. That is what makes a future move possible without rebuilding the site.
lanexio.config.ts
import { defineConfig } from '@lanexio/core';
export default defineConfig({
hosting: '@lanexio/hosting',
adapters: {
cloudflare: '@lanexio/cf-connect', // binds D1, KV, R2, Workers
auth: '@lanexio/auth-cf-access', // Zero Trust auth
database: '@lanexio/db-d1', // SQLite via D1
cache: '@lanexio/cf-kv', // KV for sessions + flagging
storage: '@lanexio/cf-r2', // R2 for images + files
}
}); Lanexio is opinionated about the fastest starting path, not about permanent lock-in. Switch providers later and keep the same components, blocks, and application structure.
The hosting abstraction keeps the application layer stable while the deployment target changes.
Vercel
Keep the same components and blocks, then switch the deployment target for Netlify-backed builds.
Netlify
Self-host on any VPS or platform that can run the Lanexio hosting layer with Node.
Node.js
Package the Node hosting target in Docker and deploy anywhere containers are supported.
Docker
Run pnpm build with no hosting adapter and get a fully static site. CDN-perfect.
Static
Not necessarily. Cloudflare offers both free and paid usage tiers across these products. Which plan you need depends on traffic, build volume, storage, and how much server-side work your project performs.
Use @lanexio/cf-connect for the hybrid Cloudflare setup and pair it with focused packages like @lanexio/cf-d1, @lanexio/cf-kv, and @lanexio/cf-r2. The CLI can scaffold the Cloudflare worker template and wrangler file when you choose the Cloudflare flow.
Nothing breaks. Every server-side operation in Lanexio goes through the hosting abstraction layer. Swap the adapter, update lanexio.config.ts, redeploy. Data migration is outside Lanexio's scope, but the application layer is fully portable.
Yes, for the right workload. Lanexio ships D1-focused helpers in @lanexio/cf-d1 and a database bridge in @lanexio/db-d1. Whether it should be your primary database depends on your write profile, migration workflow, and operational needs.
Yes. Lanexio's AI layer is provider-adapter based. The current source ships provider adapters for Anthropic, Google, Ollama, and OpenAI, and those can run from Cloudflare-backed applications through standard fetch-based requests.
Yes. Lanexio is being built with a Cloudflare-hosted deployment path for new users who want the fastest start. That hosted on-ramp is meant to reduce setup friction while keeping the underlying application layer portable.
R2 is a strong fit when you want S3-compatible object storage on Cloudflare's network and no egress fees to the Internet. Whether it is better depends on your storage workflow, image pipeline, and the rest of your infrastructure.
Join the waitlist for product updates, Cloudflare deployment notes, and hosted-onboarding announcements.
No spam. No nonsense. Just Lanexio.