Building a Single Sign-On Server in Node.js
Build a minimal token-based single sign-on flow in Node.js, covering redirects, global and local sessions, consumer validation, and single sign-off.
5 articles
Build a minimal token-based single sign-on flow in Node.js, covering redirects, global and local sessions, consumer validation, and single sign-off.
Build a small Express-like framework in Node.js, starting with an HTTP server and GET routes, then adding Router, Route, and Layer abstractions.
How JavaScript's prototype chain works, how constructor prototype properties differ from object [[Prototype]] links, and how inheritance resolves properties.
How Node.js stores and transmits binary data with Buffer, including allocation APIs, memory behavior, performance, and the internal 8 KB slab pool.
Why setTimeout(0) and setImmediate() can run in either order, explained through Node.js event-loop phases, libuv, clock updates, and process timing.