Secure Data Exchange with JWTs and the @cross/jwt Library

by Pinta

3 min read

JSON Web Tokens (JWTs) provide a secure and standardized way to transmit information between parties. They are widely used for authentication, but their ability to carry arbitrary data makes them valuable for a variety of secure data exchange scenarios. If you work with Deno, Bun, or Node.js, managing JWT workflows across these different runtimes can introduce inconsistencies and potential security risks. Lets take a look at this runtime agnostic library to enable one dependency across all major runtimes.

Continue reading →

JavaScript Generators - A Beginner's Guide

by Pinta

5 min read

An image of a programmer in deep thought In the world of JavaScript, functions are our workhorses. They take input, perform some magic, and (usually) return an output. But what if you need a function to pause execution mid-way, and then pick up right where it left off, potentially multiple times? That's where generators step in.

Continue reading →

More posts can be found in the archive.