I Am
Volodymyr Hudyma
<FrontEndDeveloper />
Table Of Contents(Articles: 145)
73

Fragments In React

December 29, 2020
#React

In React, returning multiple elements from a single component is a common scenario. For this to work properly, all of these elements should be wrapped in a parent element (we do not consider returning arrays from render...Read more

74

A Nice Tool To Run Your JavaScript Code Fast

December 24, 2020
#JavaScript

Since today is the day before Christmas, I thought I'd share with you a great tool I have been actively using for the past year to quickly run my JavaScript code. I often find myself in situations, where I need to experiment with some code I found on StackOverflow or somewhere...Read more

75

Boost Performance With React.memo()

December 20, 2020
#React

In React, changing the state of the parent component triggers a re-render of the entire component tree. This often leads to the unnecessary rendering of child components, whose props have not actually changed. Undoubtedly, this slows down the application, especially if...Read more

76

Top 10 Tools I Use Daily As React Developer

December 16, 2020
#React

Developers usually have a set of tools that they use on a daily basis when developing various projects. They help to set up the project, speed up the development process, test the final result, and make it accessible to the end-users...Read more

77

The Limitations And Security Of LocalStorage In JavaScript

December 11, 2020
#JavaScript

LocalStorage is a widely used Web Storage that is used to keep the data local in the user's browser. The data stored there has no expiry date, i.e. it remains stored until it is deleted with the code or manually by the...Read more

78

A Complete Guide To Server-Sent Events In JavaScript

December 06, 2020
#JavaScript

When it comes to developing an application that enables real-time operations, the first thing that comes to mind is WebSockets, which is fine, but there are other options that need to be considered. One of them is Server-Sent Events...Read more

79

Warning: Can't Perform A React State Update On An Unmounted Component

December 02, 2020
#React

This warning is one of the most popular warnings React developers face. I am one hundred percent sure that every developer has encountered it at least once and did not know why it appeared and how to get rid of it. First of all...Read more

80

Cancel A Request In JavaScript

November 29, 2020
#JavaScript

Aborting requests built on top of Promises was never an easy thing to do (if at all possible) until AbortController and AbortSignal were added to the JavaScript specification. They allow developers to use a signal to abort one or...Read more

81

Avoid Wasting Performance With Reselect In React

November 27, 2020
#React

React and Redux are great tools that can be used together to build web or mobile applications of varying size and complexity. Even though React is extremely fast "out-of-the-box", as the application grows, it is difficult to keep it...Read more

Newsletter
Receive all new posts directly to your e-mail
No spam, only quality content twice a week