Must Read
Dragging React performance forward
This blog explores React performance challenges and how to overcome them to get such impressive results.
Sponsor (Thank You)

Time tracking for your business has never been this easy!
Time Tracking has never been this easy. Hyperlogs is the most comprehensive app that helps you manage all your projects and teams timesheets without the clutter and complexity. Its time to focus on growing your business.
Tracking time is only a small part of understanding how healthy your business is. Hyperlogs gives you powerful and invaluable insight that guides sound business decision making. Know your revenue as well as your costs and get visual cues when vital project adjustments are necessary to help it succeed.
Its time you start focusing on growing your business, so let Hyperlogs handle the rest.
Learn
JSON Tree Shaking lands in Webpack 4.0
Tree Shaking is an old technique useful in modern environments as well. The core idea is that any code that is not used during execution paths will be dropped from the source. This makes JavaScript bundles smaller as they only contain code that is needed.
Can (a == 1 && a == 2 && a == 3) Ever Evaluate to 'true'?
In short, yes, and while it’s not something that’s useful in itself, it’s fun to think outside the box and look under the hood (we think..).
Asynchronous JavaScript: From Callback Hell to Async and Await
A reintroduction to asynchronous JavaScript, explaining why you should now be using async/await functions.
Mitigations landing for new class of timing attack
You’ve probably heard of Meltdown and Spectre, two timing attacks that can affect modern CPUs. It turns out they can be taken advantage of from JavaScript, so browsers are responding appropriately.
Debugging TypeScript from VSCode
David Herges shares the process of debugging TypeScript from VSCode.
Making WebAssembly even faster: Firefox’s new streaming and tiering compiler
People call WebAssembly a game changer because it makes it possible to run code on the web faster. This article shows how to make it even faster through Firefox's new streaming and tiering compiler.
Tools & Code
Keep webpack Fast: A Field Guide for Better Build Performance
webpack is a brilliant tool for bundling frontend assets. When things start to slow down, though, its batteries-included nature and the ocean of third-party tooling can make it difficult to optimize.