Cache Everything.
Scale Instantly.
A high-performance edge proxy that sits in front of your Next.js, Nuxt, or any SSR app, dropping your backend load to near zero.
Blazing Fast on Edge
Why Nylon Mesh?
Built for modern web frameworks.
Drop-in Caching
Automatically intercepts and caches SSR HTML and static assets. Acts as a reverse proxy in front of your app, eliminating the need for complex internal caching logic.
2-Tier Architecture
Tier 1 (in-memory RAM via Moka) responds in microseconds. Tier 2 (Redis/DragonflyDB) handles persistent, distributed cache. Your backend only renders once.
Smart Load Balancing
Built on Cloudflare's Pingora engine. Round-robin and random selection with weighted upstreams, health probes, and graceful shutdown.
Framework Agnostic
Works out of the box with Next.js, Nuxt, React SSR, Angular Universal, and Vue SSR. No framework-specific plugins required.
Works with your favorite framework
How It Works
Nylon Mesh intercepts every HTTP request, checks its 2-tier cache, and only hits your backend when absolutely necessary.
Drop-in Configuration
Everything is controlled through a single, declarative yaml file. No complex setups or hidden logic.
listen: "0.0.0.0:3000"
upstreams:
- "127.0.0.1:3001"
# DragonflyDB is highly recommended over Redis for Tier 2
# redis_url: "redis://localhost:6379"
cache:
tier1_capacity: 10000
tier1_ttl_seconds: 3
tier2_ttl_seconds: 60
status: [200, 404]
content_types:
- "text/html"
bypass:
paths:
- "/_next/"
- "/api/"
extensions:
- ".ico"
- ".png"