Posts for React

React is a declarative, efficient, and flexible JavaScript library for building user interfaces. React is based on the concept of DOM manipulation is a costly operation and ought to be minimized.

Build Amazon Clone with React, Context API, and Firebase

Amazon is a vast Internet-based enterprise that sells books, music, movies, housewares, electronics, toys, and many other goods. In this article, we will explore the react hooks and context API as we build the amazon clone using the react context API for state management within our app. If you want to learn about React Native […]

September 7, 2020 in React

Build a TikTok Clone with React and Firebase

In this article, we will build our TikTok clone with React and firebase, and also we will explore the cool feature of React hooks. TikTok video-sharing app has become very popular among entertainment applications these days. This application has millions of users who span across the world. Learn about React Animation in easy guide Pre-requisite […]

August 31, 2020 in React
Shubham
Shubham wrote

Building an offline To-Do App with React

In this tutorial, we will create an offline To-Do App with React. We will use browser local storage to save the tasks, which will keep the tasks even after we close the browser. In the end, we will host this application on Github pages. Pre-requisites Nodejs Code editor (I am using VS Code) Github Account […]

March 3, 2020 in React & Tutorials

Understanding Firebase Realtime Database using React

Firebase has two types of database: Realtime Database and Cloud Firestore. Both databases are NoSQL-like databases so the database is structured as key-value pairs. In this tutorial, we’ll focus on the Realtime database and explore how the security rules secure the integrity of the data in our database. We will build a note-taking called Easi […]

February 20, 2020 in React & Tutorials
Afolayan
Afolayan wrote

Build a CRUD Application Using Laravel and React

One of the basic things for every developer is how to go about managing Create Read Update and Delete (CRUD) operations in an application. The app we’re going to be building is an Expense Management App with Laravel for the Backend API and React on the frontend. Read this article if you want to learn […]

February 3, 2020 in Laravel & React & Tutorials

Authenticating React App with Firebase

Sometimes you want to build a quick prototype without worrying about backend logic and infrastructure. This is where Firebase really shines and combined with React, you can get authentication set up really quickly. This article covers how to authenticate your web app with React and Firebase. You need to be familiar with:  Higher-Order Components React […]

February 1, 2020 in React & Tutorials

Getting Started with React Context API

React Context was designed to provide a way in which data could be stored and accessed by various components. Why would you need this? This feature becomes important when props would have to be passed to deeply nested or numerous components within an application. In react applications, data is usually passed from parent to child […]

December 14, 2019 in React & Tutorials
Deven
Deven wrote

Setting up React Authentication using JWT

In this article, we would be Using ReactJS and ExpressJS to show how to manage React authentication in SPAs. Authentication on SPAs can be tricky considering the various methods of authentication at our disposal such as Auth0 (which is an Auth-as-a-service platform), njwt, Okta. amongst others. For the purpose of this article, I have chosen JsonWebToken(JWT). We would be creating a developer tips application […]

December 10, 2019 in React & Tutorials
Deven
Deven wrote

Server-side rendering in React.js

React offers an approach to render components to strings specifically for the case of server-side rendering. That is accomplished by the react-dom package, that manages the React to Dom conversion.However, we don’t need to simply render a view, however the correct view. That’s where isomorphic or Universal routing comes into the picture. Server-side rendering in […]

December 5, 2019 in React & Tutorials
Deven
Deven wrote

Getting started with React Router

Introduction One of the simple definition of routing is navigation between pages. Routing is provided by many JavaScript frameworks especially React.  React is a Javascript library for building user interfaces. Introducing Routing in React React provides several libraries for routing. React community provides several routing solutions available here. Let’s take a look at the React routing […]

November 19, 2019 in React & Tutorials