Hacker News new | ask | show | jobs
by ellsthrow 2148 days ago
I'm interested to know how login/auth support is working, where are the credentials stored?
1 comments

They are just cached in an encrypted token in your browser, not sent to any server. You can have a look in the source code if you are interested: https://github.com/GabrielePicco/hacker-news-rich
Here a very simple explanation of the architecture: https://medium.com/@PiccoGabriele/creating-and-hosting-an-ha...