Latest stories

NFTs and Business

N

What is NFT? Non-fungible tokens (NFTs) represent real-world objects like music, avatars, games, and videos. They can be bought and sold online on the available NFT marketplaces with the help of cryptos. Fiat and cryptocurrencies are fungible i.e they can be exchanged or traded for one another. But the NFTs cannot be replaced or interchanged for one another. The amazing difference between NFTs...

WHAT IS AN ENTERPRISE NFT AND HOW CAN A BUSINESS BENEFIT FROM THEM?

W

What is a Non-Fungible Token? Non-fungible tokens (NFT) are a kind of digital asset which is used to symbolize ownership of a completely unique object. They are different from commodities and different fungible tokens because they have an intrinsic, virtual scarcity. Proprietors can switch non-fungible tokens to other owners via a smart Contract. The scarcity and ability to transfer them...

useMemo vs React.memo: Which is better?

u

What is React.Memo? React.Memo is a HOC (Higher Order Component) in react js which accepts a react component & a function that updates the component with the help of props using memoization. React.Memo keeps the track of the react component between the renders. A small example to make you understand React.Memo concept, What is useMemo? useMemo is the hook in react js that accepts a function...

Render optimization in React app: Memoization using useMemo

R

What is the useMemo hook? The useMemo hook is one of the additional hooks that are implemented in React. The purpose of the useMemo hook is to memoize the return value of a function i.e it executes some function & remembers the value of that function. Syntax: – const memoVal= useMemo(funcThatReturnsValue,arrayDependencies) useMemo hook accepts two arguments i.e., the first argument is...

Realtime Updates WIth Mongodb

R

What do we mean by a real-time database?As the name suggests if we get updates from our database as soon as they occur, ie, in real-time, we call it a real-time database. The data with clients are in constant sync with the database. What are some use cases for real-time updates?– Real-Time Notifications – Real-Time Analytics – Event-Driven Architecture– Reactive Systems...

State Management Lifecycle in React

S

What is State? To make React Component Classes dynamic State is used.  The state of a component is an object which holds information which may change the lifetime of the component. State v Props Once Props are set they can’t be changed so Props are immutable  The state can hold data that may change over time so the state is observableProps can be used in  function or class componentsThe state is...

Modern Redux Development using Redux tookit

M

Introduction: This blog explains how you can build an application using the react-redux with a redux toolkit. This is the modern React Redux tutorials with the Redux toolkit. Things are changing in front-end application development. What we have been using to develop a front-end application is frequently switching to build things faster and more efficiently. One of them is redux, which handles...

Building Responsive UI with React Bootstrap

B

Responsive Design has been the prime requirement as we build the app considering the “mobile first” approach. So it is more important than ever to make the app responsive for all devices. There are many ways to implement responsive design, some of them are Media QueriesInline StylesHigher Order ComponentsBootstrap As there are multiple ways to implement responsive design, we will focus on the...

Async / Await Vs Promises

A

In this blog, we are learning about the concepts of javascript that handle asynchronous operations. This includes promises & async / await to handle operations. we will learn how we can use it or Part from that what is the difference between them? while writing code, let’s go we will find out. Promises:- A promise in javascript is similar to a promise in real life. it’s the same...

Top 6 Libraries You Must Know As A React Developer 

T

React is a library that was made by Meta(Facebook), and it has become one of the most popular frameworks in the world. This blog will cover some top libraries that are crucial for beginners to know when working with React. These libraries have gained popularity due to their performance, user interface and above all the momentum they have gained in the developer community. The React Native...

Category