Your auth server shouldn't cost more RAM than your entire app. So I wrote my own in Rust.
I've been using Keycloak for almost 1 year across freelance projects — large-scale enterprise apps...
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 === 3902888) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Luis Posted on Apr 28 Your auth server shouldn't cost more RAM than your entire app. So I wrote my own in Rust. #security #opensource #productivity #rust I've been using Keycloak for almost 1 year across freelance projects — large-scale enterprise apps and small side projects alike. The appeal was always the same: it's free, battle-tested, and it works. Until it doesn't. The documentation is a labyrinth.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).