Prose reader, a modern reading system engine
Prose is a modern reading system engine designed for developers to create their own reading applications. It supports various formats like EPUB and comic archives, offering a modular architecture for flexibility. The author seeks feedback from developers interested in enhancing the reading experience and improving the SDK.
- ▪Prose is an MIT-licensed reading engine for building reading apps on the web and mobile.
- ▪It supports EPUB and archive formats, allowing developers to create both simple and complex reading applications.
- ▪The architecture includes a plugin mechanism called enhancers, enabling customization of reader capabilities.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 1088601) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Maxime Posted on May 30 Prose reader, a modern reading system engine #webdev #javascript #books #typescript 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.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).