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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
A
About on SuperTechFans
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
罗磊的独立博客
量子位
有赞技术团队
有赞技术团队
V
V2EX
Engineering at Meta
Engineering at Meta

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
I Built a Free Quran Web App with the SERN Stack — Here's...
Muhammad Sub · 2026-05-01 · via DEV Community

I Built a Free Quran Web App with the SERN Stack — Here's What I Learned
A few months ago, I asked myself a simple question:

Why isn't there a clean, fast, ad-free Quran web app built with modern tech?

Most existing apps are either bloated, filled with ads, or haven't been updated in years. As a Muslim developer, this bothered me. So I built one.
Meet Al-Quran Hub — a free, non-profit Quran web application built with the SERN stack (Supabase, Express, React, Node.js).
Here's everything I learned shipping it to production.

🧱 Why the SERN Stack?
I wanted:
A real database with row-level security (not just a JSON file)
A proper REST API I control
A fast React frontend with clean routing
Zero vendor lock-in for the core logic

Supabase gave me a PostgreSQL database with an auto-generated REST layer, but I still built my own Express API on top of it for flexibility. This separation of concerns made the architecture much cleaner.
Frontend (React + Vite) → api.alquranhub.org (Express) → Supabase (PostgreSQL)

☁️ The Infrastructure Setup
This was honestly the most educational part of the whole project.
Frontend: Deployed on Vercel — zero config, automatic deployments on every push. Perfect for React.
Backend: Also on Vercel (serverless functions) at a custom subdomain api.alquranhub.org.
DNS & CDN: Everything routed through Cloudflare. SSL handled automatically, with edge caching for faster load times globally.
Domain: Registered on Hostinger, pointing to Cloudflare nameservers.
The trickiest part? Getting the subdomain for the API (api.alquranhub.org) to work correctly with Cloudflare proxying and Vercel's domain verification at the same time. Took me a couple of hours but here's the fix — make sure your DNS CNAME for the subdomain has Cloudflare proxy disabled (grey cloud) during Vercel's verification, then re-enable it after.

📱 Mobile UI — The Details Matter
I almost launched without fixing the mobile. Big mistake.
The sidebar navigation was broken on small screens — it would push content rather than overlay it. I rebuilt it with:

A slide-in animation using CSS transitions
A backdrop blur overlay that closes the sidebar on tap
Active route color-coding so users always know where they are

Small things, but they make the difference between an app that feels professional and one that feels like a side project.

🔍 SEO for a Non-Profit App
Getting organic traffic to a Quran app in Pakistan means competing for keywords like:

"Quran online"
"Quran with Urdu translation"
"surah baqarah"

My setup:

Google Search Console — submitted sitemap, monitoring coverage
GA4 — tracking user behavior
Meta tags on every page — title, description, OG tags
robots.txt + sitemap.xml — properly configured

Still early days for rankings, but the foundation is solid.

💡 The Biggest Lessons

  1. Ship first, optimize later. I spent too long perfecting things before deployment. Once it was live, real feedback came fast.
  2. Infrastructure is a skill. Cloudflare, Vercel, subdomains, SSL — this stuff isn't taught in tutorials. You learn it by breaking things.
  3. Non-profit projects need SEO too. "Build it and they will come" doesn't work. Even a free Islamic resource needs discoverability.
  4. Separation of concerns saves you later. Having a dedicated Express API instead of calling Supabase directly from the frontend gave me flexibility I didn't expect to need — but eventually did.

🚀 What's Next

Quran audio (recitation support)
Bookmarking & progress tracking
PWA support for offline access
Android app (evaluating React Native vs PWA)

🔗 Check It Out
👉 Live: https://alquranhub.org/
It's completely free and non-profit. No ads, no subscriptions, no data selling — just the Quran, clean and fast.
If you're a developer who's built something for a cause you care about, I'd love to hear about it in the comments. And if you have feedback on the tech choices, drop it below — I'm always looking to improve.

Built with ❤️ and a lot of Cloudflare troubleshooting.