What's actually new in JavaScript (and what's coming next)
ES2025 is out, ES2026 is close. Here is the new feature of Javascript we can use today, what is coming next and how we can get our AI friends to use these new features
ES2025 is out, ES2026 is close. Here is the new feature of Javascript we can use today, what is coming next and how we can get our AI friends to use these new features
I spent three days building a custom ESLint rule and accidentally learned how JavaScript actually works. ESLint is just walking your code's syntax tree and running functions against each node. Once you see it, you can enforce any coding standard automatically instead of arguing about it in PR reviews.
Before you write another useEffect, ask one question: is this syncing with an external system? If not, there's a better way.
After running a 30-day React deep-dive, these are the 10 patterns that changed how I write components, manage state, and think about performance.
I started naming my useEffect functions about a year ago. It changed how I read components, how I debug them, and eventually how I structure them.
Benefits and drawbacks of Server-Sent Events vs WebSockets, and when its better to use ach protocol based on your situation.