A simple, offline-first weekly and monthly planner that saves your notes locally in the browser.
App URL: https://localjournal.pages.dev/
- Weekly planner — individual note areas for Monday through Friday, plus a combined Saturday & Sunday panel
- Monthly planner — two panels for the current and next month
- Week & month navigation — step forward/backward or jump back to the current week/month
- Auto-save — notes are saved automatically to
localStorageas you type; no server required - Offline ready — works entirely in the browser with no dependencies or network requests
- Today highlight — the current day card is visually elevated and labeled
Open index.html directly in any modern browser — no build step or server needed.
open index.html
Notes are stored in localStorage keyed by week (ISO date of Monday) or month (YYYY-MM), so navigating away and returning preserves all content.
| Area | Key format |
|---|---|
| Weekday / weekend | todo:<day-id>:YYYY-MM-DD |
| This month | todo:this-month:YYYY-MM |
| Next month | todo:next-month:YYYY-MM |
Any modern browser that supports localStorage and Intl.DateTimeFormat.