Posts
Browse all articles about JavaScript, React, TypeScript, and web development.
12 Things NOT To Do When Building React Apps With Redux
June 8, 2019
If you've never had experience building a react redux application for production, then this article can help you prepare for the next large scaled application you build.
Fetching, Fetched, and Fetch Error Is Not Enough
June 2, 2019
When we read about making HTTP requests we often see the usual fetching, fetched, or a fetch error state. But that's not enough. There's a fourth state that should not only belong in fetching states, but in any sort of operation, especially CRUD operations.
Making WebSocket in Sync With User Internet Connectivity in React Using Redux Part 2
May 28, 2019
WebSocket can get very difficult especially when it needs to be in sync with the app and the internet. Here is how to keep it in sync (Part Two)
Making WebSocket in Sync With User Internet Connectivity in React Using Redux Part 1
May 27, 2019
WebSocket can get very difficult especially when it needs to be in sync with the app and the internet. Here is how to keep it in sync.
How Do Promises Work?
May 23, 2019
Promises have changed the way most JavaScript developers write asynchronous code. So what are promises, and how do they work?

Strategically logging messages to the console
May 21, 2019
Web Developers often use commands like console.log to debug or analyze their code flow. This post will cover some helpful tips to use the console commands provided by JavaScript.

Build a Reusable Responsive Card component with styled-components
March 2, 2019
Card components are often used because they keep layouts looking neat, clean and elegant. In this post i'll be guiding you to create a card component using the styled-components library.