Shubham Vora has Published 962 Articles

What is server-sent events in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:06:31

1K+ Views

What is Server-sent Events in JavaScript? In JavaScript, server-sent events (SSE) enable the server to send data to the client. The client require to establish a connection with the server to get data from the server. The server-sent events are similar to the WebSocket as it also establishes a connection ... Read More

What are the events available for server sent events in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:05:06

204 Views

The server-sent events allow developers to open a connection between the server and the client and send data from the server to the client. Basically, it is a one-way communication, which means we can send data from the server to the client but not from the client to the server. ... Read More

Text to Voice conversion using Web Speech API of Google Chrome

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:03:52

781 Views

Nowadays, the audiobook is more preferred by readers to reading books as they can grab knowledge while doing any work by listening to it. Also, some website adds the audio of the article in every article, so if users don’t want to read the article, they can listne to it. ... Read More

Javascript Program to Check if two numbers are bit rotations of each other or not

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:02:49

150 Views

Problem Statement − We have given two integer numbers and need to check whether the two numbers are bit rotations of each other. In JavaScript, every integer is a 32-bit binary number which is a representation of 0 and 1. Here, we need to check if we rotate the 32-bit ... Read More

How to install yup in react native in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 16:57:18

4K+ Views

The Yup is an NPM package we can install in the react-native application. It is used to validate the form values stored in a single object. Also, we can add different kinds of validations to the different form fields using the Yup. Users can execute the below command in the ... Read More

How do you receive server-sent event notifications in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 16:55:10

582 Views

The server-sent event is a unidirectional way to communicate between the server and the client. When we only require to send data from server to client, but not from client to server, we can use the server-sent events. We can use the server-sent events by establishing the connection between the ... Read More

Fixed Options in Searchbox in ReactJS

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 16:52:52

56 Views

Sometimes, developers require to add the fixed options in the search box while creating the search bar. For example, you are developing a web application containing different web pages related to cars, bikes, other vehicles, etc. Also, you require to add a search bar on every web page. So, you ... Read More

Firebase to get url

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 16:48:09

2K+ Views

Firebase is a backend-as-a-service (BAAS) that provides different services. It includes authentication, cloud storage, hoisting, etc., in the services. Basically, it makes it easy for developers to integrate the authentication, database, etc., in the mobile or web application. In this tutorial, we will explore the cloud storage of Firebase. We ... Read More

Firebase Integration with Web

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 16:45:50

392 Views

Firebase was started by Google in 2014, providing backend services to its users. It provides different kinds of high-quality services which we can use to develop mobile and web applications. For example, it provides a real-time database, user authentication, cloud storage, etc. Furthermore, it also provides analytics to analyze the ... Read More

Which command is used to run SASS code from the command line?

Shubham Vora

Shubham Vora

Updated on 21-Apr-2023 16:54:46

257 Views

SASS is an abbreviation of Syntactically Awesome Style Sheets. It is a pre-process that compiles the code of SCSS and converts it into the CSS (cascading style sheet). It is a superset of CSS. This tutorial will teach us to compile the SCSS code using the terminal. Steps to run ... Read More

Advertisements