Blood Bank Management System Project with Source Code | How To Install Bootstrap in React JS Project | React & Node JS Tutorial | Part 2

Learn how to create a fully functional Blood Bank Management System using modern technologies. This step-by-step guide is perfect for both beginners and experienced developers, offering source code and practical insights. With a focus on React JS, Node JS, and Bootstrap, you'll develop an efficient system for managing blood donations, inventory, and donors. Start building your blood bank management system today!

Technologies Used

  • React JS
  • Node JS
  • Bootstrap
  • HTML & CSS

Basic Requirement

  1. Node JS
  2. Editor
  3. Web browser

Introduction

Bootstrap is a widely-used front-end framework for building responsive and mobile-first websites. If you're using React.js to build your project, you can easily integrate Bootstrap to enhance the UI design with minimal effort. This guide will show you how to install and use Bootstrap in a React.js project.

Step 1: Install Bootstrap in React.js

Next, navigate to your project folder and install Bootstrap using npm. Run the following command in your terminal:

npm install bootstrap

This command will download Bootstrap and add it to your node_modules folder.

Step 2: Import Bootstrap CSS in React

To start using Bootstrap styles in your React components, you need to import Bootstrap's CSS file in the src/index.js or src/App.js file of your React project. Add the following line at the top of your file:

import 'bootstrap/dist/css/bootstrap.min.css';

This will allow you to use Bootstrap classes throughout your application.

Step 3: Using Bootstrap Components in React

Now that Bootstrap is installed and imported, you can start using Bootstrap components in your React project. For example, here's how you can create a simple responsive Bootstrap button inside a React component:

<button class="btn btn-primary">Click Me</button>

This will create a blue "Click Me" button styled using Bootstrap's btn and btn-primary classes.

Step 4: Adding Bootstrap JavaScript (Optional)

If you plan to use interactive Bootstrap components like modals, dropdowns, or tooltips, you’ll also need to install Bootstrap’s JavaScript dependencies. Run the following command to install both jquery and popper.js, which are required for Bootstrap's interactive features:

npm install jquery popper.js

After installation, you can import these dependencies in your index.js or App.js file:

import 'jquery'; import 'popper.js'; import 'bootstrap/dist/js/bootstrap.min.js';

Now, you can fully utilize Bootstrap's interactive components.