Issue #213 · May 31, 2021

The modern guide to React state patterns

“Imagination is the Discovering Faculty, pre-eminently. It is that which penetrates into the unseen worlds around us, the worlds of Science”

This issue is kindly sponspored by:

We help upcoming influencers and businesses do big things ๐Ÿš€

Start scheduling content today for free here.

The modern guide to React state patterns

The modern guide to React state patterns

How do we handle complex state using React? React has been around for a while now, but this question keeps coming up every so often! Managing state is a never ending struggle for software engineers and React is no exception. This article tries to take a modern stance on this topic and explores some new ways to manage state in React!

Articles

Explore DOM Events

Have you ever wondered how DOM Events actually work? If you have been doing any web development, chances are you have been dealing with them in a way or another. But if you really want to understand DOM events in-depth, you should definitely play with this wonderful interactive DOM Event simulator!

What is High Availability?

While handling increased system load is a common concern, decreasing downtime and eliminating single points of failure are just as important. High availability is a quality of infrastructure design at scale that addresses these latter considerations.

TypeScript - Poor man's async await using generators

Async/Await is one of those magic things that you can do in JavaScript. But is it really magic? Well, of course, it isn't! In this article, you can see an async engine re-implemented in TypeScript using generator functions. This will not just help you to demystify how Async/Await actually works but it will also help you to make the pattern type-safe!

claytongulick/bit-sync

Bit-sync is a utility for synchronizing arbitrary data using the rsync algorithm in pure js. If you need to build apps that require data synchronization features, this library might become your next best friend!

Book of the week

You Don't Know JS: ES6 & Beyond

You Don't Know JS: ES6 & Beyond

by Kyle Simpson

As part of the "You Donโ€™t Know JS" series, this compact guide focuses on new features available in ECMAScript 6 (ES6), the latest version of the standard upon which JavaScript is built. Learn new ES6 syntax that eases the pain points of common programming idioms. Organize code with iterators, generators, modules, and classes. Express async flow control with Promises combined with generators. Use collections to work more efficiently with data in structured waysLeverage new API helpers, including Array, Object, Math, Number, and String. Extend your programโ€™s capabilities through meta programming.