Posts
Browse all articles about JavaScript, React, TypeScript, and web development.
5 JavaScript Practices That Will Help Your Teammates Sleep At Night
August 26, 2021
In this article, I will go over some practices in JavaScript that will help you and your teammates sleep like a baby at night
5 JavaScript Practices That Will Help You In The Long Run
August 14, 2021
In this article, I will go over some practices in JavaScript that will help you in the long run
5 NodeJS Tricks to Make JavaScript Development Fascinating
June 12, 2021
This post will go over some useful tricks you can use in NodeJS right now to enhance your development experience to the point you will become fascinated
The Power of MutationObserver in JavaScript
April 23, 2021
The MutationObserver is a powerful API that can help develop an improved user experience for any app. We will go over this api and implement one as well
The Power of Chain Of Responsibility in JavaScript
April 18, 2021
Adapter Pattern in JavaScript
October 29, 2020
This post will go over the Adapter Pattern in JavaScript and explain why the pattern is important and why it can be beneficial modern programming
Best Practices to Control Your Errors
September 12, 2020
This post will go over robust strategies to control errors in your app
The Power of Functions Returning Other Functions in JavaScript
June 8, 2020
This post will go over some examples of working with functions and composing them together to create more functions to do more things
5 Critical Tips for Composing Event Handler Functions in React
May 17, 2020
We will be going over 5 critical tips to compose event handlers in react. This post will not cover everything that is possible, but it will cover important ways to compose event handlers that every react developer should know, minimally
Dont Depend On State From Callback Handlers in React
April 19, 2020
Avoiding closures in react that reference state values from their callback handlers
How To Maximize Reusability For Your React Components
April 14, 2020
This article will go over maximizing the capabilities of reusability in react and provide some tips and tricks you can use on your react app today. It will be demonstrated by building an actual react component and explaining step by step on why some steps are taken and what can be done to improve the reusability on them
Dependency Injection Container in JavaScript
April 7, 2020
This pattern provides the same goal as the Dependency Injection, but in a more flexible and powerful way by acting as the container that houses dependencies of functions (or classes) that require them when times they need it, such as during their initialization phase.