I built LET — a local-first habit and life-events tracker in React Native
Fayaz Bin Salam has developed LET, a local-first habit and life-events tracker using React Native and Expo. The app allows users to track habits, moods, and life events offline without requiring an account or cloud storage. LET emphasizes user data ownership and simplicity, offering features like daily tracking, mood logging, and a pattern view for trends.
- ▪LET is designed to operate entirely offline, ensuring that no data leaves the user's device.
- ▪The app includes four main modes: daily habit tracking, mood logging, life milestone recording, and a pattern view for weekly trends.
- ▪Fayaz built the app using a unique workflow called vibe-coding, focusing on product decisions rather than boilerplate code.
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 === 3924876) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Fayaz Bin Salam Posted on May 22 I built LET — a local-first habit and life-events tracker in React Native #reactnative #opensource #expo #typescript I've been building side projects for years. most of them live on github, quietly collecting dust. LET is one i actually use daily. LET (Life Events Tracker) is a React Native + Expo app for tracking habits, mood, and life events — entirely offline, no account required, no data leaves your device.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).