jsmanifest logojsmanifest

Posts tagged “javascript

102 posts found

7 Principles That Actually Matter in RESTFul API Design

7 Principles That Actually Matter in RESTFul API Design

January 12, 2026

Learn 7 essential RESTful API design principles with real Express and Fastify examples that will help your team build better, more maintainable APIs in JavaScript.

javascriptapidevelopment+4
Virtualization for Long Lists: Performance in JavaScript

Virtualization for Long Lists: Performance in JavaScript

January 11, 2026

Rendering 10,000 items? Virtualization reduces DOM nodes from thousands to ~50, transforming sluggish lists into butter-smooth experiences. Here's how.

javascriptreactperformance+2
Teaching AI Agents to Batch React State Updates with ESLint

Teaching AI Agents to Batch React State Updates with ESLint

January 9, 2026

Learn how to prevent AI coding assistants from creating useState render waterfalls by combining custom ESLint rules with Claude instructions for automatic useImmer enforcement.

javascriptreactai+3
5 Real-Life Problems Solved with Async Generators in JavaScript

5 Real-Life Problems Solved with Async Generators in JavaScript

January 5, 2026

Async generators might seem like an obscure feature, but once you understand them, you'll find elegant solutions to problems you've been solving the hard way.

javascriptasyncgenerators+1
Create Your New Modern TypeScript/JavaScript Library With tsup (2023)

Create Your New Modern TypeScript/JavaScript Library With tsup (2023)

January 15, 2023

We will be going over tsup (a modern robust bundling tool which is an alternative to the popular rollup) to create a JavaScript library ourselves, and then submit it to the npm registry for developers to npm install into their projects.

javascripttypescriptlibrary+1
Useful Strategies to Use Console Logging More Efficiently

Useful Strategies to Use Console Logging More Efficiently

January 15, 2023

This post will be showcasing several useful strategies to use the console for logging more efficiently in JavaScript

javascriptlogginglog+8
Create Your New Modern TypeScript/JavaScript Library With tsup

Create Your New Modern TypeScript/JavaScript Library With tsup

November 15, 2022

We will be going over tsup (a modern robust bundling tool which is an alternative to the popular rollup) to create a JavaScript library ourselves, and then submit it to the npm registry for developers to npm install into their projects. Our code examples will be written in TypeScript which is a superset of JavaScript.

javascripttypescriptlibrary+1
Combining the Command Pattern with State Pattern in JavaScript

Combining the Command Pattern with State Pattern in JavaScript

November 14, 2022

We are going to incorporate/combine the command pattern together with the state pattern.

javascriptcommand design patternstate design pattern+3
Async/Await Tips to be Aware Of At All Times

Async/Await Tips to be Aware Of At All Times

August 21, 2022

In this post we will be going over a couple of important tips that every JavaScript developer must know to prevent difficult bugs from occurring in your applications.

javascriptasyncawait+3
Singleton Design Pattern in JavaScript

Singleton Design Pattern in JavaScript

July 10, 2022

Singletons are a necessary component in software where only one instance of an object is necessary but is instantiated many times. In this post, we will be going over the Singleton Design Pattern in JavaScript.

javascriptdesign-patternsingleton+1
The Power of Interpreter Design Pattern in JavaScript

The Power of Interpreter Design Pattern in JavaScript

June 26, 2022

In this post we will go over the Interpreter Design Pattern in JavaScript. We will implement an Interpreter as well as basic grammatical representations of a source code. We will create an interface for client codes to use (like parsers for example)

javascriptdesign patternpattern+1
The Power of Visitor Design Pattern in JavaScript

The Power of Visitor Design Pattern in JavaScript

June 19, 2022

When developing web applications one powerful strategy that is very rewarding in value is the Visitor Design Pattern. This post will go over the Visitor Pattern in JavaScript and knock away some important concepts and techniques that every JavaScript developer must know when using the Visitor.

javascriptdesign-patternvisitor+1
The Power of Flyweight Design Pattern in JavaScript

The Power of Flyweight Design Pattern in JavaScript

June 14, 2022

In this post we will be going over the power of the the Flyweight Design Pattern in JavaScript and leverage it to create more memory efficient applications. We will go over the problems that arise and showcase how the flyweight pattern knocks them all away.

javascriptflyweightdesign-pattern+1
The Facade Design Pattern in JavaScript

The Facade Design Pattern in JavaScript

June 11, 2022

In this post we will be going over the Facade Design Pattern and see how it is an effective solution to encapsulate complexity.

javascriptfacadedesign-pattern+1
The Power of Iterator Design Pattern in JavaScript

The Power of Iterator Design Pattern in JavaScript

May 28, 2022

In this post we will be going over the Iterator Design Pattern in JavaScript and implement one hands-on. We will learn why a different algorithm becomes necessary when developing

javascriptdesign-patterniterator+1
The Bridge Design Pattern in JavaScript

The Bridge Design Pattern in JavaScript

April 25, 2022

In this article we will be going over the Bridge Design Pattern in JavaScript. This is one of the top used patterns that make a significant impact in software applications. It is a pattern that easily promotes a separation of concerns in its implementation and it's scalable

javascriptdesign-patternbridge+1
The Power of Template Design Pattern in JavaScript

The Power of Template Design Pattern in JavaScript

April 17, 2022

This post will go over the Template Design Pattern in JavaScript. We will understand more in detail the approach of this pattern and one scenario of when we should use it. We will also see a diagram of how the the structure look like "outside the box". And finally, we will implement the pattern in code so that by the end of this article you will be comfortable about templating in JavaScript.

javascriptdesign-patterntemplate
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
8 JavaScript Habits That Add Value to Your Projects

8 JavaScript Habits That Add Value to Your Projects

February 11, 2022

This post will go over 8 JavaScript Habits that Add Value to Your Projects so that people other than you who are reading your code will value you more. I have been a lead for almost two years and these are the top most loved habits I adapted from my teammates as a Team Lead.

javascriptbest practicescommenting+3
Convenient Tactics of Logging in NodeJS and JavaScript in the browser

Convenient Tactics of Logging in NodeJS and JavaScript in the browser

February 7, 2022

In this post we will go over several convenient tactics of logging in both nodejs and browser environments in JavaScript.

javascriptloggingconsole+7
9 Marvelous VSCode Practices You Need To Do Now In 2022

9 Marvelous VSCode Practices You Need To Do Now In 2022

February 2, 2022

In this post we will be going over 9 Marvelous VSCode Practices You Need To Do Now In 2022, and if you're using VSCode and hoping to be included with the rest of the community in using features that make it so awesome, then you have come to the right post because we are on the same team and it's time to check off our list of marvelous VSCode features.

javascriptvscodevisual studio code+4
8 Horrifying Practices You Really Must Not Do in JavaScript

8 Horrifying Practices You Really Must Not Do in JavaScript

January 28, 2022

JavaScript can be a really flexible but powerful language when developing code but it's not always straight forward to know which practices we should avoid. In this post we will be going over 8 Practices You Really Must Not Do in JavaScript and should not do before it gets too late.

javascriptbest practicecrash
Chaining Patterns in JavaScript

Chaining Patterns in JavaScript

January 25, 2022

As developers it is our responsibility to write good code. This means writing code that is both efficient and readable. But sometimes we come across obstacles where we have to decide which code is better to go with when one sacrifices readability to perform better or vice versa. This post will go over different chaining patterns in JavaScript

javascriptchain of responsibilitychaining+4
9 Ways You Can Use React Today in 2022

9 Ways You Can Use React Today in 2022

January 21, 2022

In this post, we will cover 9 Ways You Can Use React in 2022 to build applications. These can range from video stream services to text editors.

javascriptreactreact+2
The Power of Caching in JavaScript

The Power of Caching in JavaScript

January 18, 2022

As our applications become larger the need for performance grows. Performance can be achieved by caching. In this post we will go over powerful ways caching can improve the way you think and write efficient code.

javascriptcachecaching+5
Here is 6 Reasons Why You Should Know The Composite Design Pattern

Here is 6 Reasons Why You Should Know The Composite Design Pattern

January 15, 2022

The composite pattern can be your swiss-army knife when developing dynamic user interfaces. This post will explain in more about the composite pattern in detail

javascriptcompositepattern
5 JavaScript Practices That Will Help Your Teammates Sleep At Night

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

javascriptbest practicesclean code
5 JavaScript Practices That Will Help You In The Long Run

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

javascriptbest practicesclean code
5 NodeJS Tricks to Make JavaScript Development Fascinating

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

javascripttricksnodejs
The Power of MutationObserver in JavaScript

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

javascriptmutationmutationobserver+1
The Power of Chain Of Responsibility in JavaScript

The Power of Chain Of Responsibility in JavaScript

April 18, 2021

javascriptchain of responsibilitycor+1
Adapter Pattern in JavaScript

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

javascriptadapterdesign pattern
Best Practices to Control Your Errors

Best Practices to Control Your Errors

September 12, 2020

This post will go over robust strategies to control errors in your app

javascripterrors
The Power of Functions Returning Other Functions in JavaScript

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

javascripthigher order functioncomposition+4
5 Critical Tips for Composing Event Handler Functions in React

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

javascriptcompositioncomposing+9
Dont Depend On State From Callback Handlers in React

Dont Depend On State From Callback Handlers in React

April 19, 2020

Avoiding closures in react that reference state values from their callback handlers

javascriptreactclosure+4
How To Maximize Reusability For Your React Components

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

javascriptreactreusability+1
Dependency Injection Container in JavaScript

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.

javascriptdependency injectiondependency injection container+3
9 Ways in React to Manipulate and Work With Components in 2020

9 Ways in React to Manipulate and Work With Components in 2020

April 1, 2020

In this article we will be going over 9 ways to manipulate and work with React components in 2020

javascriptreacttypescript+8
The Power of Recursion in JavaScript

The Power of Recursion in JavaScript

March 28, 2020

We will talk about the benefits of recursion, why we need it, and show great examples of recursion in use

javascriptrecursionhigher order function
Composing Functions in JavaScript

Composing Functions in JavaScript

March 12, 2020

In this article, we will go over some examples of composing in JavaScript and talk about important concepts that always need to be kept in mind when composing

javascriptcompositionreact+2
Generics in TypeScript

Generics in TypeScript

March 5, 2020

This post aims to go over generics in TypeScript and talk about what they are, how they work, and why we even need them.

javascriptgenericstypescript
Decorators in JavaScript

Decorators in JavaScript

February 23, 2020

We'll be taking a look at some examples of decorators in JavaScript and create our own decorator to see how it can be useful to our code

javascriptdecoratorscomposition+1
6 Practices in React You Might Find Effective

6 Practices in React You Might Find Effective

February 19, 2020

In this article, we'll be going through 6 Practices in React You Might Find to be Effective

javascriptreactcomposition+1
12 VSCode Shortcuts and Tactics to Ease Development

12 VSCode Shortcuts and Tactics to Ease Development

February 11, 2020

Here are 12 visual studio code shortcuts and tactics to ease your development flow

javascriptvscodevisual studio code+2
5 Examples of Higher Order Functions in JavaScript for Better Understanding

5 Examples of Higher Order Functions in JavaScript for Better Understanding

February 2, 2020

Here are 5 examples of higher order functions in use to help you understand them more clearly in JavaScript

javascripthigher order functionfunctions+1
5 Tips for Newcomers to Approach Your Next React App

5 Tips for Newcomers to Approach Your Next React App

January 19, 2020

Starting a fresh modern front end project today can become quite stressful since there are an abundance of variations of specific tools that go hand in hand in each stack. Here are 5 tips to help you.

javascriptreacttools+4
Write More Robust JavaScript: 7 Best Practices

Write More Robust JavaScript: 7 Best Practices

January 15, 2020

Here are seven code practices in JavaScript that will help you write stronger code

javascriptcompositionbest practice+5
9 Ways to Work With Objects in JavaScript in 2020

9 Ways to Work With Objects in JavaScript in 2020

January 13, 2020

javascript
10 VSCode Practices to Hasten Your React Development Flow

10 VSCode Practices to Hasten Your React Development Flow

January 8, 2020

We will be going over my VSCode settings that enhance my development for react apps such as extensions, snippets, keyboard shortcuts, and configuration settings.

javascriptreactvscode+4
The Power of Simplifying Large Components in React

The Power of Simplifying Large Components in React

January 2, 2020

We will be simplifying a large react component from a real world production app and explore the powerful benefits it gives in return

javascriptreactsidebar+2
Create a React Chrome Extension Filtering YouTube Videos By Narrower Durations

Create a React Chrome Extension Filtering YouTube Videos By Narrower Durations

December 29, 2019

In this article, we will be going over how to create a chrome extension in react to enhance filter youtube video results using facebooks create-react-app tool

javascriptreactchrome+3
The Command Design Pattern in JavaScript

The Command Design Pattern in JavaScript

December 21, 2019

We will be going over the command design pattern in JavaScript and see some problems that it solves

javascriptdesign patterncommand+1
The Power of the Composite Design Pattern in JavaScript

The Power of the Composite Design Pattern in JavaScript

December 7, 2019

In this post, we will be going over the Composite Design Pattern in JavaScript

javascriptcomposecomposition+2
5 Anti-Patterns in JavaScript to Avoid When Working With Collections

5 Anti-Patterns in JavaScript to Avoid When Working With Collections

December 5, 2019

This article will go over 5 anti-patterns to avoid when working with collections in JavaScript

javascriptbest practiceanti pattern+2
Promises in JavaScript

Promises in JavaScript

December 2, 2019

This post aims to shed some light on how you can use promises in JavaScripts

javascriptbest practicepromise+2
4 Dangerous Problems in JavaScript Easily Solved by The Builder Design Pattern

4 Dangerous Problems in JavaScript Easily Solved by The Builder Design Pattern

November 24, 2019

This article will go over 4 dangerous problems in JavaScript that are easily solved by the builder design pattern

javascriptreactpattern+4
The Builder Pattern in JavaScript

The Builder Pattern in JavaScript

November 20, 2019

The design pattern we will be going over today is commonly known as the Builder Design Pattern, which is a pattern used to help construct complex objects.

javascriptreactpattern+4
The Prototype Pattern in JavaScript

The Prototype Pattern in JavaScript

November 16, 2019

In this article we will be going over the prototype pattern in JavaScript and explain its benefits as opposed to the classic object oriented approach

javascriptreactprototype+1
Create a Modern Dynamic Sidebar Menu in React Using Recursion

Create a Modern Dynamic Sidebar Menu in React Using Recursion

November 13, 2019

In this article we will be building a robust, modern dynamic sidebar in react using the powerful programming concept called recursion

javascriptreactsidebar+3
8 Useful Tricks for React Apps You Should Know

8 Useful Tricks for React Apps You Should Know

November 10, 2019

This article will go over 8 neat tricks in react that every react developer should know

javascriptreacttricks+1
The Power of the Module Pattern in JavaScript

The Power of the Module Pattern in JavaScript

November 1, 2019

We will be going over the module pattern in JavaScript and understand the benefits it provides to help us build robust applications

javascriptpatternbest practice+4
The Mediator Pattern in JavaScript

The Mediator Pattern in JavaScript

October 27, 2019

In this article, we will be going over the _mediator pattern_ and implementing one using JavaScript

javascriptreactpattern+4
Extend Your React Electron Desktop App with TypeScript

Extend Your React Electron Desktop App with TypeScript

October 16, 2019

This article will go over steps on how to extend an electron repo to support TypeScript as it may be a little complex due the differences between the main and renderer process

javascriptreactdesktop+4
Create Your First React Desktop Application in Electron with Hot-Reload

Create Your First React Desktop Application in Electron with Hot-Reload

October 13, 2019

If you were wondering on how to begin with creating your first desktop application using JavaScript and TypeScript, then this post will help you to get started with writing your own desktop software application!

javascriptreactdesktop+4
The Publish/Subscribe Pattern in JavaScript

The Publish/Subscribe Pattern in JavaScript

October 10, 2019

In this article, we will be going over the publish/subscribe pattern in JavaScript and see how simple (but powerful) it is to implement in our JavaScript applications.

javascriptpatternbest practice+4
The Power of the Observer Pattern in JavaScript

The Power of the Observer Pattern in JavaScript

October 5, 2019

We will be going over the Observer Pattern and implementing it through JavaScript so that hopefully you can attain a better understanding of it if you're having trouble understanding the concept.

javascriptpatternbest practice+5
Recursion Inside JavaScript

Recursion Inside JavaScript

September 27, 2019

If you're new to recursion, this article will hopefully help you understand the concept a little more clearly.

javascriptreactpattern+2
The Power of Higher Order Functions in JavaScript

The Power of Higher Order Functions in JavaScript

September 18, 2019

A powerful feature i'm going to talk about in this article utilizes functions, called a higher order function. Powerful examples will also be shown in this article.

javascriptpatternbest practice+2
The Power of React Hooks

The Power of React Hooks

September 16, 2019

Create an app using only this new feature from React. We will build a new app called Slotify that inserts styled quotes throughout your blog posts.

javascriptreactslotify+2
Currying Inside JavaScript

Currying Inside JavaScript

September 8, 2019

Currying is an advanced technique when working with functions and it's used in multiple programming languages.

javascriptcurryfunctional programming
6 Ways to Help Keep You Going When Working on JavaScript Projects

6 Ways to Help Keep You Going When Working on JavaScript Projects

September 1, 2019

This post will list some things that make me code for longer periods of time and the goal is to help shed some light on how you can take some of these tips to improve your focus on your tasks.

javascriptliving
8 Miraculous Ways to Bolster Your React Apps

8 Miraculous Ways to Bolster Your React Apps

August 25, 2019

This artice will go over 8 Miraculous Ways to Bolster Your React Apps

javascriptreactbest practice
14 Beneficial Tips to Write Cleaner Code in React Apps

14 Beneficial Tips to Write Cleaner Code in React Apps

August 17, 2019

Here are 14 beneficial tips to help you write cleaner code in react apps

javascriptreactclean code+3
This React Cheatsheet Includes All of v16+

This React Cheatsheet Includes All of v16+

August 11, 2019

This post will go over a cheat sheet that includes react v16 snippets

javascriptreactcheatsheet+3
22 Miraculous Tools for React Developers in 2019

22 Miraculous Tools for React Developers in 2019

August 4, 2019

This article will go over 22 tools you can use to build your react apps in 2019

javascriptreactredux+3
Build a Character Select Screen in React

Build a Character Select Screen in React

July 28, 2019

Build a cool character select screen in React with plain CSS

javascriptreactcharacter select+5
2 Reasons Why You Must Understand Delegate Prototypes

2 Reasons Why You Must Understand Delegate Prototypes

July 23, 2019

This article will go over a known anti-pattern with delegate prototypes and also explain how to turn that around to improve your apps performance

javascriptprototypedelegate+4
Designing API Methods in JavaScript

Designing API Methods in JavaScript

July 21, 2019

This article will go over a couple of rules to keep in mind when designing methods for an API in JavaScript

javascriptapiarchitecture+6
8 Habits For Beginning and Mid Level JavaScript Developers That Will Sabotage Your Future

8 Habits For Beginning and Mid Level JavaScript Developers That Will Sabotage Your Future

July 15, 2019

You might be devoting so much of your time and energy into your daily JavaScript tasks that you might end up causing a catastrophe for yourself and your future. My goal is to help you from making these mistakes so that you don't end up in misery.

javascriptreacthabits+3
26 Miraculous VS Code Tools for JavaScript Developers in 2019

26 Miraculous VS Code Tools for JavaScript Developers in 2019

July 5, 2019

As a JavaScript developer, I will share what enhances my development flow in several aspects revolving around 3 of 5 of the Five Senses of the human.

javascriptreactvscode+1
8 Practices In React That Will Crash Your App In The Future

8 Practices In React That Will Crash Your App In The Future

July 3, 2019

If you're currently building an application using react or thinking of using react for upcoming projects, then this tutorial is for you. I hope this tutorial will help you on your journey to make great react applications too by exposing a few code implementations that you ought to think twice about

javascriptreactbest practice+1
10 Things NOT To Do When Building React Applications

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

javascriptreactbest practice+2
7 Mistakes That Keep You Behind

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.

javascriptconceptsmistakes
Enhance Your React App With Undo and Reset Abilities

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!

javascriptreactundo+3
Here Are 7 Ways Higher Order Functions Can Improve Your Life

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

javascriptreacthigher order function+1
Build a Stunning Breadcrumb Component in React with Plain CSS

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

javascriptreactbreadcrumb+1
Build a Modern, Customized File Uploading User Interface in React with 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.

javascriptreactcss+4
12 Things NOT To Do When Building React Apps With Redux

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.

javascriptreactredux+5
Strategically logging messages to the console

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.

javascriptbrowserconsole+1
Build a Reusable Responsive Card component with styled-components

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.

reactjavascriptstyled-components+2