Tag: Javascript
Updated on February 2, 2020
Using React Hooks and Global State with ReactN
I’ve been pretty happy with the addition of Hooks to React, along with functional components. In this post I’ll provide examples on how to use ReactN to cascade global state updates to functional components.
Updated on July 4, 2019
react-digraph: Path to 5,000 Nodes
About 2 years ago I was hired to Uber on a team developing internal tools. One of these tools is a website that uses an Uber-built open source project called react-digraph. Back then, react-digraph could only handle a… Read More
Updated on September 10, 2018
React Advice for Faster Rendering
This is some advice that I’ve discovered through working on various React projects. Some of these practices are in response to issues with these projects. They are not intended to be a standard, but more of a guide… Read More
Updated on December 20, 2016
A better safeApply with Angular 1.5
Many of you might have run into this error at some point in time: Error: $digest already in progress This is typically created when someone calls $scope.$apply() in the middle of their code. Angular can be finicky about… Read More