Best-Practices
3 articles
Nodejs
Try-Catch Everywhere? 4 Patterns Senior Devs Use Instead
I joined a startup two years ago. The codebase had try-catch blocks wrapping every single function: routes, services, models, utils. Everything. The …
Nodejs
Node.js with TypeScript in 2025: Best Practices Guide
TypeScript is the standard for building Node.js applications in 2025. These are the patterns we use for production TypeScript projects. TS adds static …
Javascript
Avoid JavaScript Template Literals for Building URLs with Query Params
Template literals are literals delimited with backtick (`) characters, allowing for multi-line strings, string interpolation with embedded …