Advertisements
JavaScript Design Patterns for Clean Code
JavaScript

JavaScript Design Patterns for Clean Code

Design patterns get a bad rap, but a handful of them genuinely earn their keep in JavaScript. This opinionated walkthrough covers seven patterns —...

12 min read 3,303 views
#javascript #design-patterns #clean-code #software-architecture
Continue Reading →
Prototypal Inheritance in JavaScript
JavaScript

Prototypal Inheritance in JavaScript

I bombed a whiteboard interview because I couldn't explain __proto__ vs .prototype. Went home and actually figured it out. Here's the prototype chain...

11 min read 4,072 views
#javascript #prototypal-inheritance #oop #object-oriented-programming
Continue Reading →
Advertisements
Migrating a Node.js Project to TypeScript
TypeScript

Migrating a Node.js Project to TypeScript

When our team decided to migrate to TypeScript, I thought it'd take a week. It took three months. Here's the full story -- what went smoothly, what broke...

11 min read 3,771 views
#typescript #migration #nodejs #tsconfig
Continue Reading →
Advanced TypeScript Utility Types
TypeScript

Advanced TypeScript Utility Types

TypeScript's built-in utility types didn't click for me right away. Then I started building real APIs and they became part of my daily toolkit. Here's a...

12 min read 3,733 views
#typescript #utility-types #type-system #generics
Continue Reading →
TypeScript Decorators: A Practical Guide
TypeScript

TypeScript Decorators: A Practical Guide

I put off learning TypeScript decorators for a long time. They looked like unnecessary magic. Then I actually used them on a real project -- and changed...

11 min read 2,938 views
#typescript #decorators #design-patterns #nestjs
Continue Reading →