(312) 620-0386 | contact@bitovi.com
Get our best content on how to build better apps.
Got product development questions?
Join us on
Discord
A Simple Asynchronous Alternative to React's useReducer
Even though React's useReducer has gained a lot of popularity during the last couple of years, it can be difficult to use for some common cases. Specifically, it requires a lot of boilerplate to support async actions.
Ali Shouman
RxJS with React: Actions and Subjects (Part 2)
Part 2 of this series, focusing on Actions and Subjects, is available on Dev.to.
Kyle Gifford
RxJS with React (Part 1)
RxJS and React go together like chocolate and peanut butter: great individually but they become something incredible when put together.
The Bitovi Team
Recursive React Components
Often times, particularly when dealing with complex nested data, React developers need to re-think the way they're structuring their component trees. In certain cases, when the data requires it, component trees can't be rendered in an iterative fashion, instead React developers must rely on recursion to display their data.