SRSatpalsinh Ranainblogs.satpal.cloud·May 10 · 6 min readLinux from my EyesThe Filesystem That Doesn't Exist Every Linux user knows /proc. But almost nobody knows what it actually is. It's not a filesystem. There are no files on any disk. Everything inside it is generated on42H
SRSatpalsinh Ranainblogs.satpal.cloud·May 9 · 4 min readJWT Authentication Why we need Authentication in our application Imagine you walk into a private club. The bouncer doesn't just let you in because you look nice you need a membership card. In the digital world, Authenti00
SRSatpalsinh Ranainblogs.satpal.cloud·May 9 · 7 min readStoring Uploaded Files and Serving Them in ExpressAs we have seen in previous article how to upload file using express and multer. Uploading a file is just the first half of the story. The other half where it lives and how you retrieve it. Where Uplo00
SRSatpalsinh Ranainblogs.satpal.cloud·May 9 · 7 min readHandling File Uploads in Express with MulterWhy File Uploads Need Middleware When you submit a plain HTML form name, email, that sort of thing the browser encodes everything as application/x-www-form-urlencoded. It's a simple key=value string, 00
SRSatpalsinh Ranainblogs.satpal.cloud·May 9 · 8 min readSessions vs JWT vs CookiesYou've seen the Stack Overflow answers. You've skimmed the Medium posts. You know the drill sessions store state on the server, JWTs are stateless, cookies are just the transport. Got it. But then you00