I built my own uptime monitor because UptimeRobot felt cluttered - here's what I learned
Rehaan Khan created a custom uptime monitor called PingBoard after finding UptimeRobot too cluttered for his needs. PingBoard offers a simplified interface for monitoring website uptime and includes features like real-time status updates and various monitoring types. The project was built using Next.js and other modern technologies, and is now available for public use.
- ▪PingBoard monitors URLs and sends alerts when sites go down.
- ▪The project utilizes Next.js, TypeScript, and Convex for its backend.
- ▪PingBoard features a free tier and does not require a credit card for access.
DEV.to (Top) files mainly under programming. We currently carry 4,892 of its stories.
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 === 3943539) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Rehaan Khan Posted on May 21 I built my own uptime monitor because UptimeRobot felt cluttered - here's what I learned #nextjs #saas #webdev #buildinpublic I built my own uptime monitor because UptimeRobot felt cluttered — here's what I learned The problem I've been using UptimeRobot for a while. It works, but every time I opened it I felt like I was looking at a dashboard designed for enterprise teams. I just wanted to know: is my site up? If not, tell me. That's it.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).