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

推荐订阅源

Google DeepMind News
Google DeepMind News
爱范儿
爱范儿
J
Java Code Geeks
L
LangChain Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园 - Franky
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
博客园 - 司徒正美
B
Blog
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building an Offline-First Progressive Web App Without Rea...
Arvind Jolly · 2026-06-22 · via DEV Community

Lessons learned from deploying a production PWA with Service Workers, Firebase Hosting, and vanilla JavaScript.

The Problem

Most articles about Progressive Web Apps assume you're building yet another to-do app.

We weren't.

We were building a web application intended to be used in places where connectivity is unreliable: rural areas, retreats, flights, and locations with intermittent mobile coverage.

The requirements were straightforward:

  • The application had to remain usable without a network connection.
  • Previously visited content needed to load instantly.
  • Public tools had to work offline.
  • Updates needed to propagate reliably.
  • The solution had to remain lightweight and maintainable.

Just as importantly, we wanted to avoid introducing a heavyweight framework solely to achieve offline support.

The result was a production PWA built using:

  • Vanilla HTML, CSS, and JavaScript
  • Firebase Hosting
  • Service Workers
  • Flask APIs

No React.

No Next.js.

No build pipeline.

No hydration.

The Core Principle: Treat the Service Worker as a Router

Many PWA tutorials present caching strategies as isolated techniques:

  • Cache-first
  • Network-first
  • Stale-while-revalidate

In practice, a production application usually needs several of them simultaneously.

The most useful mental model we found was to think of the service worker as a routing layer.

Different content types receive different treatment.

Content Strategy
Images, CSS, fonts, static JavaScript Cache-first
HTML documents Network-first
API requests Pass-through
Configuration modules Always fresh

The important question is not:

Which caching strategy should I use?

The important question is:

Which caching strategy should this particular resource use?

Once we adopted that mindset, the service worker became dramatically easier to reason about.

Public Content and Private Content Are Different Problems

One mistake I see frequently in PWA discussions is treating all pages equally.

They aren't.

Some pages are:

  • Public
  • Anonymous
  • Safe to cache

Others are:

  • User-specific
  • Session-aware
  • Privacy-sensitive

The boundary matters.

For example, serving a stale public calculator page is usually harmless.

Serving cached user-specific content to the wrong session is not.

Our solution was simple:

  • Public pages can be pre-cached.
  • Session-dependent pages are excluded from pre-caching.
  • Sensitive content is always fetched fresh.

The result is a much safer offline experience.

Never Cache the Service Worker

If there is one rule worth remembering, it is this:

Do not aggressively cache your service worker.

The service worker controls your entire update mechanism.

If the browser becomes stuck with an old service worker, every future deployment becomes harder.

Static assets can be immutable.

The service worker cannot.

Treat it as the control plane for your application.

Build an Escape Hatch

Eventually, every production application encounters one of these:

  • A bad deployment
  • Corrupted cache state
  • An update bug
  • A broken service worker

When that happens, users should not need to clear browser data manually.

We implemented a simple versioning mechanism that can:

  1. Detect an application version change
  2. Unregister outdated service workers
  3. Trigger a clean reload

Think of it as an emergency recovery procedure.

You may never need it.

When you do need it, you'll be glad it exists.

Why We Chose localStorage Instead of IndexedDB

This decision often surprises developers.

IndexedDB is usually presented as the "correct" storage solution for PWAs.

For large datasets, that's true.

For our use case, it wasn't.

The application only needed to store:

  • Small pieces of user state
  • Temporary workflow data
  • Lightweight JSON payloads

Each payload was only a few kilobytes.

The benefits of localStorage were compelling:

  • Simplicity
  • Synchronous access
  • No schema management
  • Minimal implementation complexity

Could IndexedDB have worked?

Absolutely.

Would it have improved the user experience?

Not meaningfully.

Sometimes the simplest solution is the right solution.

The Most Overlooked Performance Problem: Fonts

Many performance discussions focus on JavaScript bundles.

In our case, fonts were the bigger challenge.

The application supports multiple writing systems, including:

  • Latin
  • Devanagari
  • Arabic
  • Japanese
  • Chinese

Without careful loading strategies, typography can easily become the largest source of perceived latency.

Three techniques made the difference:

  1. Using display=swap
  2. Adding preconnect hints
  3. Caching font resources after the first visit

After the initial load, typography effectively became free.

Offline UX Is More Important Than Offline Technology

Most developers focus on the technical side of offline support.

Users don't care about your caching strategy.

They care about what happens when connectivity disappears.

When a page isn't available offline, users should never encounter a browser error screen.

Instead, provide:

  • A branded fallback page
  • Clear messaging
  • A recovery path
  • Consistent visual identity

The goal is not merely functionality.

The goal is preserving trust.

Fast Applications Need Feedback

An unexpected challenge emerged once everything was cached.

The application became extremely fast.

Page transitions often completed in under 100 milliseconds.

Users interpreted this as abrupt rather than responsive.

The solution wasn't optimization.

The solution was intentional motion.

Subtle micro-interactions:

  • Entry animations
  • State indicators
  • Ambient visual feedback

made the interface feel more polished despite adding virtually no latency.

This was a reminder that perceived performance and measured performance are not always the same thing.

What We Learned

After deploying and maintaining the application, a few principles stood out:

1. Service workers are routing infrastructure

Treat them like routers rather than cache containers.

2. Not everything belongs in IndexedDB

Simple state often benefits more from simplicity than scalability.

3. Offline experiences are UX problems first

Caching is only the implementation detail.

4. Every PWA needs a recovery mechanism

Eventually something will go wrong.

Plan for it.

5. Fast interfaces still need visual feedback

Perceived quality matters as much as measured speed.

6. Simplicity scales surprisingly far

For many applications, a lightweight architecture can outperform a far more complex framework-based stack.

Final Thoughts

The modern web platform already provides most of the tools needed to build capable offline applications.

Service Workers, Cache Storage, localStorage, and modern browser APIs are remarkably powerful when combined thoughtfully.

The biggest lesson wasn't technical.

It was architectural.

Offline support works best when it is treated as a product requirement from the beginning rather than an enhancement added later.

When that happens, the result feels less like a website and more like an application that simply happens to run on the web.


What has been your biggest challenge building PWAs in production? I'd be interested to hear what strategies have worked (or failed) for you.

About the Project

SAGE (School of Ancient Geomantic Education) is a modern geomancy platform that combines traditional Western Geomancy and Indian Ramal Shastra with contemporary software engineering.

The platform provides:

  • Free geomantic calculators and educational tools
  • Daily oracle readings
  • Premium AI-assisted geomantic consultations
  • Support for multiple languages
  • Offline-capable Progressive Web App functionality

Explore the project at dotsofdestiny.com and learn more about how ancient symbolic systems can be implemented using modern web technologies.