Posts for react

Fix – ReactDOM is not defined

If you are getting ReactDom is not defined in React, this article will help you fix the issue. This issue could pop out because: you don’t have module react-dom properly installed inside your project and you tried to call it, or simply you didn’t call this module correctly. To fix that, you will need to […]

February 20, 2021 in Errors solved
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