PinnedIntroducing Buntastic: An Ultra-fast Static Site ServerWritten in TypeScript, Runs on BunJan 16, 2025·5 min read·37
Modern Cookie Management with the Cookie Store APIThe browser Cookie Store API represents a modern approach to handling cookies in web applications. The way we’ve always done it is using document.cookie which is error-prone because you have to work with key/value pairs in a string. Besides being err...May 13, 2025·4 min read·3
How To Use Libuv In ZigLibuv describes itself as a multi-platform support library with a focus on asynchronous I/O. It is widely used in many web servers (e.g., Kestrel) and runtimes such as Node.js and Python (via uvloop). As of Zig 0.14.0, there is no native async I/O, s...May 10, 2025·4 min read·1
Top 5 Free React UI Libraries to Use in 2025Top 5 Free React UI Libraries to Use in 2025 React UI libraries provide developers with ready-made, customizable components that streamline UI development, enforce design consistency, and enhance accessibility. These libraries vary widely in scope an...May 1, 2025·8 min read·4
Mastering Advanced Set Operations in JavaScriptUnleashing the Power of Union, Intersection, and MoreApr 21, 2025·6 min read·4
Building Runtime-Agnostic Apps/Packages with JavaScriptNode.js popularized the concept of running JavaScript on the server. Today, there are more JavaScript runtimes intended for building server-based applications, with Bun and LLRT among the most recent I'm aware of. Deno has been around for some years,...Apr 10, 2025·4 min read·14
How To Build CLI Using JavaScript And BunA command-line interface (CLI) is a program that runs in the terminal. It takes user inputs, processes commands, and executes system functions. In the early days of computing, the terminal was the only way to interact with a computer. Today, most use...Feb 6, 2025·7 min read·9