Show HN: Early Reader – Free open source reading app I built for my 4-year-old

Over the holidays I went looking for a reading app for my 4-year-old daughter. The top app in this space charges $500/month. Since that's a bit much to pay for an app, I figured I could vibe code something better in a few days, so I tried.

The app uses DISTAR phonics, which is a method from the 60s by Siegfried Engelmann. The core idea is simple: teach sounds before letter names, then blend sounds into words, then words into sentences. There's a specific sequence that builds on itself.

On top of that I added spaced repetition, same algorithm as Anki. Cards come back at increasing intervals depending on how well the kid does. This keeps sessions short, maybe 5-10 minutes, and the retention is noticeably better than just drilling the same set of cards every day.

Each card has an AI-generated illustration and spoken audio. All 721 cards are pre-generated and bundled with the app. Nothing calls an API. The whole thing works offline.

What's in it: 721 cards (letters, digraphs, words, sentences), speech recognition for pronunciation practice, no account, no data collection, no ads. Source is on GitHub.

She's been using it for a bit more than 3 months now, roughly 10 minutes a day. She can now recognize phonetic patterns in words and read simple books in English.

No monetization, no data tracking whatsoever. Also available for free on the App Store (if you don't want to deal with the hassle of compiling the app from source): https://apps.apple.com/us/app/early-reader-preschool/id67571...

github.com

4 points

melvinmelih

3 days ago


2 comments

maxlegav 3 days ago

Looks great, I vibe coded something similar myself because everything I have seen is really expensive. I actually went through your repo on GitHub and really like the local-first approach with SQLite and pre-generated assets.But with ~4k audio files and 721 cards, how are you handling app size and load times on mobile? Did you run into any constraints there or have to optimize asset loading in a specific way?

  • melvinmelih 2 days ago

    That's the only trade-off, the app bundle is about 340MB for the first download but once you have it on your phone it will always work offline and load all assets instantly.