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

推荐订阅源

J
Java Code Geeks
博客园 - 司徒正美
博客园 - 【当耐特】
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
宝玉的分享
宝玉的分享
V
V2EX
S
SegmentFault 最新的问题
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
L
LangChain Blog
D
Docker
腾讯CDC

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
Prose reader, a modern reading system engine
Maxime · 2026-05-30 · via DEV Community

Maxime

Hi HN,

I’m the author of Prose, an MIT-licensed reading engine / SDK for building reading apps on the web and mobile:

https://prose-reader.com/

The project has been around for about 6 years, but I’ve never really promoted it much. I’ve mostly been working on the architecture, compatibility, examples, and developer experience. I’m now trying to present it more publicly and hopefully find other developers interested in the problem space.

Prose is meant for developers who want to build their own EPUB/comic/document reader without having to implement the hard reading-system parts from scratch: rendering, pagination, navigation, zooming, gestures, search, annotations, archive handling, and so on.

It is written in TypeScript and web-based, so it can run in the browser or inside mobile apps through a WebView/React Native bridge. It supports EPUB and archive-style formats such as ZIP/CBZ/CBR, with a modular reader + streamer architecture so apps can decide how they want to load, cache, transform, and serve content.

One thing I’ve tried to make possible is using the same foundation for very different levels of complexity. You can use Prose to build a simple image-based reader for comics or manga, where the content is mostly pages from an archive, but you can also use it to build a much more complex EPUB reader with text layout, navigation, search, annotations, and custom reading behavior.

Prose is also used in Oboku, an open-source reading app I’ve been building:

https://oboku.me/

One important part of the architecture is the enhancer system. Enhancers are Prose’s plugin mechanism: they let you add or modify reader capabilities without changing the core engine. Features like gestures, search, annotations, PDF support, gallery mode, refit behavior, or custom app-specific behavior can be implemented as enhancers. The goal is to make Prose flexible enough that developers can add virtually any capability they need on top of the same core reader.

A note on AI: I have about 15 years of experience as a developer, and I use AI as a tool to help me iterate faster and with higher quality. I don’t treat it as “vibe coding” or a replacement for engineering judgment. It has been useful for tackling many small problems, reviewing ideas, improving code paths, and generally helping me move the project forward faster.

I started Prose because most reading engines I found were either proprietary, app-specific, difficult to customize, or not designed as reusable developer infrastructure. I wanted something more modular: a reading system SDK that lets you design your own product while reusing the hard parts.

Some things already available:

  • EPUB rendering in the browser
  • Image/archive-based reading for comics and manga
  • Archive support for formats like ZIP/CBZ/CBR
  • Pagination, navigation, zoom, and gestures
  • Search and annotations
  • PDF/gallery/refit enhancers
  • React and React Native examples
  • MIT license
  • Plugin-style enhancer system for extending reader behavior
  • Used in Oboku, an open-source reading app

I’d love feedback from people who have worked on ebook readers, comic/manga readers, publishing tools, web rendering, accessibility, offline-first apps, or React Native/WebView integrations.

At this stage, I’m mostly looking for developers who are interested in giving ideas, trying it in their own projects, or providing feedback to help improve it.

GitHub: https://github.com/mbret/prose-reader
Docs: https://doc.prose-reader.com/
Demo: https://demo.prose-reader.com/

I’d love to hear what you think, what use cases this could support, and where the API/design could be improved.