From the OpenReplay Blog
12 Ways to Improve Your DevTools Console Logging
Stop relying on console.log and learn to harness the power of your brower's web console
Vuex: State management for Vue Projects
Learn how to handle your state with VueX, the state management library for Vue
Smart Optimization Techniques: Lazy Loading with React
Learn how to optimize the loading time of your React applications using Lazy Loading
Low-Level Charts in React
What do you usually do when your project requires something more than casually using chart libraries? That's when a low level visualization library comes in handy.
All about the Vue CLI
Learn all you need to know about using the Vue CLI to bootstrap your Vue apps
Server Side Rendering (SSR) with React
Learn how easy it is to do Server Side Rendering with React and NextJS
How to forget about type errors in your React props with PropTypes
If you want to reduce debug time of your React apps drastically, then this post is for you.
Is Redux Dead?
Should you still worry about learning Redux?
6 React Best Practices For 2021
6 tips for writing better React in 2021
Improving React application performance: React.memo vs useMemo
As a React developer, you’ve most likely come across situations where optimizing the performance of a component is necessary.
How to use TypeScript to Create Vue Apps with Vue Class Components
Vue.js is a popular, easy to use, front end web development framework.
Integrate Bootstrap in your React Projects with these 2 libraries
Developers have a hard time with CSS or just do not have an eye for design, CSS frameworks come in handy to help them create great designs.
What are server components and will you need to use them in the future?
React Server Components let you access the speed of fetching data on the server while maintaining its rich interactivity of client-side apps
All about React's createRef method
React refs are a useful and powerful tool that we can use to get even more control over the elements in our application.
React Snapshot Testing With Jest: An Introduction With Examples
Both frontend and backend developers write tests. Testing is an excellent way to guarantee code quality.
Fetch vs Axios: Which Is the Best Library for Making HTTP Requests?
Axios and Fetch provide a seemingly equal API and set of features, so which one is better for making HTTP requests?
A guide to the React useState hook
React hooks have been around for quite a while now and have changed the way developers go about building React components.
A Guide to Using localStorage in JavaScript Apps
The localStorage object is one of the most used objects in web programming. It provides a solution for storing key-value pairs locally.
JavaScript's Memory Management Explained
Allocating memory is the process of reserving space in memory, while releasing memory frees up space, ready to be used for another purpose.
Do You Really Need Redux? - Pros and Cons of this State Management Library
The Redux pattern provides state management for JavaScript apps. You can use the Redux library with any frontend framework.
7 Ways of Achieving Conditional Rendering in React
7 most common ways of achieving what is known as “conditional rendering” in React.
JavaScript Event Loop And Call Stack Explained
JavaScript Event Loop is responsible for executing the code, collecting and processing events, and executing queued sub-tasks.
React’s onClick Event Handler Explained
The React onClick event handler enables you to call a function and trigger an action when a user clicks an element, such as a button.
An Easy Guide to Testing React Hooks
A quick overview of React hooks and then an easy way to test them independently with a React Hooks testing library.