
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 224 Articles for Javascript Library

1K+ Views
React Native's Fabric architecture is a performance-focused update to the traditional React architecture. It uses asynchronous rendering and a new reconciliation algorithm to improve app performance and reduce the time it takes to update the UI. Fabric also allows for more efficient use of memory and better handling of complex animations and interactions. The Problem In the current architecture, all the UI operations are handled by a sequence of cross-bridge steps. There are four core sections in the current architecture − The React code written by the developer (which is very similar to its web counterpart), The JavaScript that ... Read More

128 Views
CoffeeScript was introduced in 2009, which compiles JavaScript. The simple difference between CoffeeScript and JavaScript is that of syntax. The syntax of CoffeeScript is very simple. As CoffeeScript compiles JavaScript, we can use every method of JavaScript in CoffeeScript. So, we will explain every math function of a Math object we can use in CoffeeScript. In JavaScript, Math is a static object, so we can use it directly without taking the reference of any element. We can call the methods of the Math object by taking the ‘Math’ keyword as a reference. Math functions in CoffeeScript Math.abs() The abs() method ... Read More

1K+ Views
Reactjs is an open source javascript library, used in web development to build interactive pages in websites. Reactjs provides user friendly, declarative, and precise. Components Components are individualistic and reusable bits of code in react js. It helps to create separate files for our class and function. In general components are two types− class components and function components. Event Handlers Event handlers define what action to be performed when an event is fired or triggered. Events in react preceded with “on” for example onClick, and onFocus. Event handler in react is just like DOM in HTML, react has also same handler ... Read More

904 Views
Developers frequently have to choose between performance and SEO while creating conventional client-side-only React apps. Server components give developers the ability to utilize the server infrastructure more effectively and, thus, by default, attain excellent performance. By combining the most beneficial aspects of client-side interaction and server-side rendering, React Server Components enable programmers to create apps that are easy to create and maintain, and they can be shared across different projects. In this article, we'll take a look at what React Server Components are and how they can be used to create isomorphic applications. What Are React Server ... Read More

13K+ Views
React.js is not just about client-side rendering. It also offers REST APIs for server-side rendering and use cases like web crawlers, offline data storage, etc. REST is a type of API that provides a way for web and mobile applications to communicate with each other. It is an out-of-the-box service that can be used in any web application built on React.js. It is also a top choice for developers looking to make their React application scalable as it provides high availability, low latency, and consumes less bandwidth over the network. The goal of this article is to provide a brief ... Read More

379 Views
React Query 3 is a new library by the React team. It's a query language that helps developers to declaratively specify the data requirements of their React application. It’s the third iteration of React Query, which was originally developed by Facebook. It’s now maintained by the community and its contributors. It allows you to query and mutate data in a declarative way. It includes features like automatic caching and stale data handling, which can help take your React apps to the next level. If you're looking for a fast, lightweight, and easy-to-use library, React Query is definitely worth considering. ... Read More

2K+ Views
Whenever anyone tries to run the react native platform, an extensive compilation of JavaScript files gets arranged together in a single file. This compilation is done through a bundler called metro. Metro is a well-accepted Java script bundler with many options, including an entry file that provides you with a Java script file along with all the previous files. Let us look at the functionalities of the metro bundler and how it has been supporting the react native framework - How Does Metro Help in React Native Development? One essential feature of the metro is the sub-second reload ... Read More

306 Views
Routing is not a feature that comes standard with React.js and hookrouter is the modern approach that simplifies navigation features within react components. React hooks provide the foundation of the hook-router module. It is feature-rich and simple enough for fresher developers to get started. In this section, we will be going over what React.js Routing is and how Hooks routing alternative useRoutes() works in React. What is Routing in React? Routing is a way to define user navigation through a set of pages available in an application. To do this, it will create static HTML views that ... Read More

26K+ Views
In React, there are various ways to work with asynchronous data, but using Promises is one of the most popular ones. A Promise is an object that represents an asynchronous operation. It stands for a value that will be resolved in the future, in other words. In this post, we'll examine the significance of promises, their underlying API, and some common pitfalls to watch out for while utilizing them. We'll also give a simple illustration of how to manage asynchronous programming using promises. You will know more about using Promises in React.js at the conclusion of this post and ... Read More

602 Views
In many ways, people utilize videos to enhance their digital encounters, yet what if someone informed you that you may now make videos on the internet? This article covers Remotion, a library collection that lays the groundwork for automatic program-producing films with React. Remotion is a freshly released package that allows React to make films and visual effects. Several web developers found it intriguing because it gives them more freedom to produce their films and animation. Overview about Remotion Your favorite web technologies, including JavaScript, HTML, TypeScript, CSS, etc., may be used to make animations and films utilizing ... Read More