jsmanifest logojsmanifest

Posts

Browse all articles about JavaScript, React, TypeScript, and web development.

The Power of Strategy Design Pattern in JavaScript

The Power of Strategy Design Pattern in JavaScript

April 10, 2022

In this post, we will be going over the Strategy Design Pattern. This is a well known pattern that encapsulates one or more strategies or algorithms to do a task.

javascriptdesign-patternstrategy
The Power of Memento Design Pattern in JavaScript

The Power of Memento Design Pattern in JavaScript

April 6, 2022

The Memento Pattern in programming is useful in situations where we need a way to restore an object's state. In this post we are going to implement the Memento pattern for the runtime and will not be storing anything statically.

javascriptdesign-patternmemento
State Design Pattern in JavaScript

State Design Pattern in JavaScript

April 4, 2022

The State Pattern ensures an object to behave in a predictable, coordinated way depending on the current "state" of the application. This post will reveal the power of the state design pattrn in javascript

javascriptdesign-patternstate
The Power of Proxy Pattern in JavaScript

The Power of Proxy Pattern in JavaScript

April 2, 2022

In this post we will be going over the power of the Proxy Design Pattern in JavaScript and go over several examples of how beneficial it can become for your next application.

javascriptproxydesign-pattern
7 JavaScript Code Practices Your Teammates Will Love You For

7 JavaScript Code Practices Your Teammates Will Love You For

March 29, 2022

This post will go over 7 JavaScript Code Practices Your Teammates Will Love You For. The tips in this post are coming from my opinions and experiences as a Team Lead Full Stack Engineer with more of a focus on the Front End side of things, so I assure you that these tips can help you become more valuable as a teammate and they work.

javascriptdocumentationfunit test+3
8 JavaScript Libraries Built From Scratch

8 JavaScript Libraries Built From Scratch

March 27, 2022

In this post, we will be listing 8 JavaScript libraries that were built from scratch.

javascriptlibrarysnabbdom+11
11 JavaScript Examples to Source Code That Reveal Design Patterns In Use

11 JavaScript Examples to Source Code That Reveal Design Patterns In Use

March 20, 2022

This post will go over several source codes in the JavaScript world that you can look at to find some inspiration, answers, or even as a learning experience so that you can speed up your pace in learning the advanced coding techniques without feeling alone.

javascriptreactmodular+2
The Power of Factory Design Pattern in JavaScript

The Power of Factory Design Pattern in JavaScript

March 18, 2022

In this post we will be going over the Power of Factory Design Pattern in JavaScript, which is one way to break a complex object apart into simpler objects to avoid unnecessary complexity when the opportunity arrives. Keep in mind that we're going to follow the DRY principle as a best practice.

javascriptdesign patternfactory design pattern+1
10 JavaScript and NodeJS Tips that Will Knock Away Multiple Concepts

10 JavaScript and NodeJS Tips that Will Knock Away Multiple Concepts

March 10, 2022

In todays world working smart is the way to go. This post will go over 10 JavaScript and NodeJS Tips that Knock Away Multiple Concepts with One Stone Each.

javascriptdevelopmentself improvement
The Only Parts of Fetch API in JavaScript That Will Get You Far In Your Career

The Only Parts of Fetch API in JavaScript That Will Get You Far In Your Career

March 6, 2022

In this post we will go over the parts of the fetch api that is just enough to get you very far in your development career. You don't need to understand everything about fetch in order to succeed. You just need the understand the parts you will be asked to do in your projects.

javascriptfetchrequest+1
Build a Powerful Reusable Box Component in React

Build a Powerful Reusable Box Component in React

February 27, 2022

Box components are the basic foundation to composing more complex components together, allowing endless possibilities to create modern user interfaces. In this post we will be building a powerful reusable box component in react with just a few simple implementations inside the function.

javascriptreactbox+2
10 JavaScript Practices You Should Know Before Tomorrow

10 JavaScript Practices You Should Know Before Tomorrow

February 21, 2022

This post will go over 10 JavaScript tricks and best practices that every front end engineer should know before tomorrow

javascripttricksbest practice