Shubham Vora has Published 793 Articles

How to Create Phone numbers and Contacts List in ReactJS?

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 17:11:44

966 Views

We can assume that you have used mobile devices to call someone and seen the contact list. Generally, when you open the phone book on most mobile devices, it will show you three sections. The first is a keypad to dial a custom number, the second is recent calls, and ... Read More

How to create an Image Slider in ReactJS?

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 17:10:58

19K+ Views

Image slider is crucial in any web application to show multiple images with good UX. Whenever we go on any prestigious site like amazon.com or cardekho.com, they show images in the slider, and these websites need to show multiple images for every product. Now, what if they show every single ... Read More

HTTP REST API calls in ElectronJS

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 17:09:03

7K+ Views

We can choose from various libraries like request, axios, or fetch to make requests to our HTTP REST API endpoint. Doing so allows us to interact with data from our API and display it in our ElectronJS application. ElectronJS is an open-source project actively maintained by the OpenJS Foundation ... Read More

How to set an object key inside a state object in React Hooks?

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 17:08:03

8K+ Views

The React component can contain various states, and we can use state variables inside the return statement with HTML elements. Whenever the value of state variables updates, it also updates on the web page without refreshing the web page. This tutorial will teach us to use the objects inside ... Read More

How to set a background Image With React Inline Styles?

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 17:06:52

23K+ Views

In ReactJS, we can use the ‘backgroundImage’ property of CSS to set the background image for a component or particular HTML element like div. Here, we will learn to set the background image using the inline styles. Also, we will use the absolute and relative URLs to set the ... Read More

How to use Material-UI with Next.js?

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 17:05:39

7K+ Views

Material-UI is a popular React-based UI library that provides a wide2 range of UI components and design elements. Next.js is a React-based framework for building server-side rendered (SSR) and statically exported web applications. In this tutorial, we will learn how to use Material-UI with Next.js to create a user-friendly, modern ... Read More

How to solve “Process out of Memory Exception” in Node.js?

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 17:02:58

4K+ Views

"Process out of Memory" is an error that occurs when a Node.js program tries to use more memory than the system has available. This can happen when the program grows too big or runs for too long and can cause the system to stop working properly. To prevent this error, ... Read More

How to create Emoji Picker in NextJS?

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 17:00:41

2K+ Views

Emojis have become an essential part of modern communication. In this tutorial, we will learn how to create an emoji picker in NextJS, a popular React-based framework for building server-rendered applications An emoji picker is a UI component that displays a collection of emojis and allows users to select one ... Read More

How to show LinearProgress in ReactJS?

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 16:43:39

2K+ Views

The linear progress bar is often used to show download and upload percentages in the application. We can show the upload or downloaded completion percentage using the linear progress bar. Also, it improves the UX of the application as it shows progress with animation. In this tutorial, we will learn ... Read More

Hot Reload in ElectronJs

Shubham Vora

Shubham Vora

Updated on 28-Feb-2023 16:42:28

5K+ Views

Hot reloading is a powerful feature in ElectronJS that lets developers quickly view their code changes in real time without having to restart the application. It makes the development process faster and more efficient by reducing the time and effort required to test changes. Steps to Implement Hot Reload in ... Read More

Advertisements