Article

journal / bookest-app

BOOKest is a personal reading tracker that runs in the browser

Web Apps
Carla April 26, 2023 1 min read

BOOKest is a reading tracker that lives entirely in the browser. I wanted something private, quick to open, and useful without needing an account or a backend.

At a glance

  • Stack: HTML, CSS, JavaScript
  • Type: Static web app
  • Use: Tracking books, notes, and monthly reading goals
  • Status: Prototype

What it does

You can add books, track reading status, set a monthly goal, and keep notes. Everything is stored in localStorage, so the app stays fast and works offline.

How it works

index.html defines the layout and form controls. assets/js/bookest.js handles state, filtering, and rendering, while the stylesheet does the heavier visual work. There is no server hiding underneath it.

Why it works for me

  • No sign-up, no sync layer, no extra friction.
  • Exporting to JSON gives the app a simple backup story.
  • The interface stays manageable because the problem is kept small.

What I would add

  • Import from JSON backups.
  • Sorting controls.
  • Optional book lookup from a public API.

Link