Posts
Browse all articles about JavaScript, React, TypeScript, and web development.
10 Things NOT To Do When Building React Applications
June 28, 2019
React comes with its own set of gotchas, some of it potentially becoming a severe problem to your applications if you don't take care of them now. This article will go over 10 things not to do when building react applications
7 Mistakes That Keep You Behind
June 25, 2019
This article will go over 7 mistakes developers tend to make that are keeping them behind while learning to become better in JavaScript.

Enhance Your React App With Undo and Reset Abilities
June 23, 2019
Ever developed something where you made mistakes and wished there was an undo feature? What about reset? Well, look no further because I am here to show you how to enhance your application with undo and reset capabilities!
Here Are 7 Ways Higher Order Functions Can Improve Your Life
June 20, 2019
Did you know that higher order functions can help improve your life? Here are 7 reasons how they can
Build a Stunning Breadcrumb Component in React with Plain CSS
June 18, 2019
By the end of this tutorial you should be able to learn how to create a stunning breadcrumb component in react using plain css
Build a Modern, Customized File Uploading User Interface in React with Plain CSS
June 14, 2019
When users are using your technology, they're not just using it--they're most likely judging your app and its technology as well without you knowing it. This post will provide tips to implement complex UX for a file uploading interface.
Uploading Files in React While Keeping The UI Completely In Sync
June 11, 2019
This post will teach you how to create a user interface containing a file upload component that will help users select and send their files somewhere, while allowing the interface to tap into every update from the moment of instantiation to the end.
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?