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

How To Mock Date/Moment In Jest?

October 31, 2020
#React

Proper dates handling is one of the most complex parts of JavaScript. There are several things developers should remember about when dealing with them...Read more

2

Top 7 Ways To Optimize The Performance Of React Applications

October 24, 2020
#React

The way web applications are created has changed since the creation of React. By operating on a virtual DOM instead of the real one, it makes updating UI extremely fast and manageable. It seems that all tools are set up from the beginning...Read more

3

React Hooks: useMemo

October 14, 2020
#React

Memoization is an optimization technique used to speed up computer programs by storing the results of expensive function calls and returning the cached result when the same inputs occur again. A memoized function...Read more

4

Debounce In React

October 08, 2020
#React

React is often used for various tasks, including those that require a lot of complex calculations. Performing this type of calculation too often compromises the performance of the application. In most cases we can limit their number so that they are not executed too often...Read more

5

Top 7 Mistakes Most React Developers Make

September 18, 2020
#React

React is a great JavaScript library for creating user interfaces. It brings an enormous number of advantages for both, customers and developers. But like any tool, if it is not used properly, it creates more problems than it actually solves...Read more

6

Unit Testing React Components | Redux-Thunk | Redux-Saga (Full Guide, September 2020)

September 13, 2020
#React

Each application must be automatically tested to ensure that everything works as intended and that the new features can be delivered without destroying the existing ones. Without testing, the functioning of your application is a matter of pure luck...Read more

7

How To Create A Custom Matcher In Jest?

August 06, 2020
#React

A matcher (or an assertion) is a function used to check for a particular condition. Jest offers a variety of matchers out-of-the-box, but sometimes there is a need to extend their functionality...Read more

8

My Way Of Looking For The Perfect React Architecture

July 29, 2020
#React

When someone asked Dan Abramov what is an optimal structure for React applications, he replied: "Move files around until it feels right". I thought it was a joke at first, and started trying different architectural approaches until I realized he was absolutely right...Read more

9

Redux Thunk vs. Redux Saga. The Differences.

July 25, 2020
#React

Today, the vast majority of applications have to deal with asynchronous tasks. In React, there are 2 most popular libraries that allow you to handle them in an easy way...Read more

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