DEV Community

Cover image for The Fundamentals Of ReactJS: A Rich Understanding Of Its Basics
Roman
Roman

Posted on

The Fundamentals Of ReactJS: A Rich Understanding Of Its Basics

This Blog Post is originally posted at programmingly.dev

ReactJS has become a staple in the world of web development, especially for building dynamic single-page applications (SPAs). If you’re new to React, this guide will help you understand the basic concepts, why it’s essential, how it works, the problems it solves, its benefits, and the types of applications you can build with it. We’ll also cover the prerequisites for learning ReactJS and explore why it has become the most popular library for SPAs.

Why ReactJS?

ReactJS is a JavaScript library developed by Facebook for building user interfaces, particularly SPAs. Here’s why it’s so valuable:

  • Component-Based Architecture: React allows developers to build encapsulated components that manage their own state. These components can be reused, making development more efficient and easier to manage.
  • Virtual DOM: React uses a virtual DOM to improve performance. Instead of updating the real DOM directly, React updates a virtual representation, which is then reconciled with the real DOM in the most efficient way possible.
  • Declarative Syntax: React’s declarative syntax makes code more predictable and easier to debug.
  • Large Ecosystem: With a vast array of libraries and tools, React’s ecosystem supports almost any feature you might need in a web application.

Understanding the Building Blocks

Reactjs follows the atomic structure for building any application. The atomic structure allowed us to break complex structure into smaller re-useable components. Reactjs makes the workflow easy by building a new syntex for writing HTML inside javascript called JSX. It also allowed us to manage state and sharing data between different components.

1) Components

Components are the building blocks of a React application. They can be functional or class-based. Here’s a simple functional component:

import React from 'react';

function Welcome(props) {
  return <h1>Hello, {props.name}</h1>;
}

export default Welcome;
Enter fullscreen mode Exit fullscreen mode

2) JSX

JSX is a syntax extension that looks similar to XML or HTML. It allows you to write HTML-like code within JavaScript. JSX makes your code more readable and easy to write.

const element = <h1>Hello, world!</h1>;
Enter fullscreen mode Exit fullscreen mode

3) State and Props

State is an object that determines how a component renders and behaves. Props are inputs to components. They are passed from parent components and are immutable.

import React from 'react';

function CounterApp(props) {
  // ReactJS: State Management using useState() Hook
  const [count, setCount] = useState(0);
  // Rendering UI
  return (
     <div>
         <h1>{props.appName}</h1>
         <button onClick={() => setCount(count - 1)}>Descrement(-)</button>
         <p>{count}</p>
         <button onClick={() => setCount(count + 1)}>Increment(+)</button>
     </div>
  );
}

export default Welcome;
Enter fullscreen mode Exit fullscreen mode

How ReactJS Works

ReactJS works by maintaining a virtual DOM. When a component’s state changes, React updates the virtual DOM first. It then compares the virtual DOM with the real DOM and only updates the parts of the real DOM that have changed. This process is called reconciliation.

Problems ReactJS Solves

  • Complex State Management: Managing state in large applications can be cumbersome. React’s state management (often enhanced with tools like Redux) simplifies this process.
  • UI Performance: Frequent updates to the real DOM can be slow. React’s virtual DOM optimizes this by minimizing direct DOM manipulations.
  • Reusability: Components in React can be reused across different parts of an application, reducing redundancy and improving maintainability.

Benefits of Using ReactJS

  • Efficiency: The virtual DOM ensures efficient updates and rendering.
  • Flexibility: React can be used for various applications, not just SPAs. It’s flexible enough to be integrated with other libraries or frameworks.
  • Strong Community Support: React has a massive community, offering extensive resources, third-party libraries, and tools.

Types of Applications You Can Build

  • Single Page Applications (SPAs): React excels in creating fast, responsive SPAs.
  • Mobile Applications: With React Native, you can build mobile applications for iOS and Android using the same principles.
  • Progressive Web Apps (PWAs): React can be used to build PWAs that offer a native app-like experience.
  • Static Sites: With frameworks like Gatsby, you can build static sites using React.

Prerequisites for Learning ReactJS

  • HTML/CSS: Basic understanding of HTML and CSS.
  • JavaScript: A solid grasp of JavaScript fundamentals (ES6 and beyond).
  • Command Line: Basic familiarity with command line operations.
  • Node.js and npm: Understanding of Node.js and npm for package management.

Why ReactJS is the Most Popular Library for SPAs

ReactJS’s popularity can be attributed to several factors:

  • Performance: The virtual DOM enhances performance. Ease of Learning: React’s component-based approach and JSX make it easier to learn and use.
  • Flexibility: It can be used with other frameworks and libraries.
  • Strong Ecosystem: A vast ecosystem of tools and libraries that support development.
  • Community Support: A large, active community that continuously contributes to its growth and improvement.

Create and Run Reactjs Project

You can use Create React App to set up a new project quickly, or use Vite to create a new project.

# CRA (Create React APP)
npx create-react-app my-app
cd my-app
# used to run your project
npm start

# Using Vite and choosing options
npm create vite@latest
# or select a template directly 
npm create vite@latest my-react-app -- --template react
cd my-react-app
# used to run your project
npm run dev
Enter fullscreen mode Exit fullscreen mode

This will start the development server and open your new React application in the default web browser. By default, create-react-app served at Port: 3000 available at http://localhost:3000. Whereas, react application created using vite is served at Port: 5173 and available at http://localhost:5173.

Conclusion

ReactJS is a powerful library that simplifies the process of building dynamic and efficient user interfaces. Its component-based architecture, virtual DOM, and strong community support make it an excellent choice for both beginners and experienced developers. By understanding the basics and gradually building more complex applications, you can leverage React to create impressive web applications.

Top comments (0)