Server-side rendering has become increasingly popular in recent years. By using it, we can do many things that are not possible with a client-side rendering approach. However, it also has some drawbacks, like...Read more
Recently it turned out, that I have been working with React for a little over 3 years, so now is the perfect time to summarize what I have learned during this adventure...Read more
We, as software developers, often build different kinds of forms, which consist of different elements, like inputs, text areas, selects, etc. There are 2 ways of defining those elements, the controlled and uncontrolled way...Read more
Almost each web application contains lists of elements printed to the screen. If you render list elements without defining the "key" prop, you will receive a warning message in the console. Let's find out why...Read more
One of the most asked interview questions for JavaScript developers is: "What's the difference between type and interface in TypeScript?". Even if you used both of them, the answer might not be obvious...Read more
Redux is a library that allows us to manage an application's state easily and predictably. Configuring React application to use Redux can be confusing, especially at the beginning, so here's a practical step-by-step guide...Read more
After you decided to proceed with React, there are many libraries that will help you to speed up the development process. Choosing the right ones is crucial for the project's success...Read more
Having learned some JavaScript basics and intermediate concepts we're ready to kick off with advanced topics. Meet the React - a JavaScript library for building user interfaces.Read more
Generator function - a special kind of function that can stop midway and continue execution from the place where it stopped. This function returns a generator object, which conforms to both - iterable and iterator protocol...Read more