A web-based speed reading tool using Rapid Serial Visual Presentation (RSVP) with Optimal Recognition Point (ORP) alignment.
- Privacy-first, offline-first
- EPUB and TXT file support
- Settings and progress persisted to localStorage
Everything runs locally in your browser. Your text and files never leave your computer - no servers, no tracking, no analytics. EPUB and TXT files are processed entirely client-side. Settings and reading progress are stored in localStorage. Works offline once loaded.
Optional: If enabled in settings, missing book metadata (title, author, cover) can be fetched from Open Library API. This sends the book title to their servers.
RSVP (Rapid Serial Visual Presentation) is a reading technique that displays text one word at a time at a fixed focal point. This eliminates saccades (eye movements) that normally slow down reading, allowing for significantly faster reading speeds.
When reading normally, your eyes don't land at the center of words. Research shows that fixations tend to occur slightly left of center, at what's called the Optimal Viewing Position (OVP) or Optimal Recognition Point (ORP). This position allows for fastest word recognition.
The ORP position follows the Spritz algorithm:
- 1 character: 1st letter
- 2-5 characters: 2nd letter
- 6-9 characters: 3rd letter
- 10-13 characters: 4th letter
- 14+ characters: 5th letter
Traditional RSVP displays center each word, requiring small eye adjustments. This implementation aligns each word's ORP at the exact same screen position, so the highlighted letter never moves. Your eyes stay completely still while words flow around the focal point.
The display time for each word is adjusted based on:
- Word length (longer words get more time)
- Punctuation (sentence-ending punctuation triggers a longer pause)
This mimics natural reading rhythm where comprehension requires variable processing time.
Studies have shown that RSVP reading can achieve speeds of 500+ words per minute, though comprehension tends to decrease above 350-400 WPM for complex texts. The technique works best for:
- Light reading and familiar content
- Skimming and preview reading
- Building reading speed gradually
Note: Extended RSVP reading can cause visual fatigue (Benedetto et al., 2015). Take breaks.
npm install
npm run devThen open http://localhost:5173
npm run buildOutput will be in the dist folder.
- RSVP Speed Reader - Theme inspiration
- Spritz - The commercial product that popularized ORP-based RSVP
- OpenSpritz - Open source Spritz implementation
- speedread - Terminal-based Spritz-alike in Perl
- rsvp-reading - Svelte-based RSVP reader with PDF/EPUB support
- LetoReader - Self-hostable speed reader with chunking and highlighting
- tspreed - Terminal RSVP reader in POSIX shell
- Masson, M. E. J. (1983). Conceptual processing of text during skimming and rapid sequential reading. Memory & Cognition, 11(3), 262-274.
- Rayner, K., Schotter, E. R., Masson, M. E., Potter, M. C., & Treiman, R. (2016). So much to read, so little time: How do we read, and can speed reading help? Psychological Science in the Public Interest, 17(1), 4-34.
- Benedetto, S., Carbone, A., Pedrotti, M., Le Fevre, K., Bey, L. A. Y., & Baccino, T. (2015). Rapid serial visual presentation in reading: The case of Spritz. Computers in Human Behavior, 45, 352-358.