Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • Software and Tools
    • School Learning
    • Practice Coding Problems
  • Go Premium
  • NodeJS Tutorial
  • NodeJS Exercises
  • NodeJS Assert
  • NodeJS Buffer
  • NodeJS Console
  • NodeJS Crypto
  • NodeJS DNS
  • NodeJS File System
  • NodeJS Globals
  • NodeJS HTTP
  • NodeJS HTTP2
  • NodeJS OS
  • NodeJS Path
  • NodeJS Process
  • NodeJS Query String
  • NodeJS Stream
  • NodeJS String Decoder
  • NodeJS Timers
  • NodeJS URL
  • NodeJS Interview Questions
  • NodeJS Questions
  • Web Technology
Open In App
Next Article:
Student Management System using Express.js and EJS Templating Engine
Next article icon

How to Build Library Management System Using NodeJS?

Last Updated : 21 Mar, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

A Library Management System is an essential application for managing books, users, and transactions in a library. It involves adding, removing, updating, and viewing books and managing users. In this article, we will walk through how to build a simple Library Management System using NodeJS.

What We Are Going to Create?

We will create a simple web application where administrators can manage books and users. The application will feature:

  • Add new books with all the required details.
  • View the list of books including details like name, author, pages, prices, and availability.
  • Issue and return books (change the book’s availability).
  • Delete books from the library.

Project Preview

Screenshot-2025-03-21-185258
Library Management System

Approach

Below are the following approaches for building the Library Management System using NodeJS:

  • Set Up Middleware with EJS: Use EJS (Embedded JavaScript) as the templating engine to render dynamic HTML pages. Configure it as middleware to send data from the server (e.g., app.js) to the web pages, allowing dynamic display of books and users on the front end.
  • Install and Configure Body Parser: Install Body Parser middleware to capture user input from forms (e.g., book titles, authors, user names, etc.). This allows the server to handle POST requests and parse incoming form data, which is then stored in an in-memory array or a database.
  • Create Routes for Adding Books and Users: Define a POST route to handle the creation of new books and users. Form submissions (book titles, authors, and user details) will be captured by the server and a new book or user will be added to the collection (in-memory or database). The data is sent back to the front end and displayed on the page.
  • Create Delete Route: Set up a DELETE route to remove books or users from the collection. By using the book’s or user’s unique ID (or other identifier), the application can remove them from the collection and update the webpage to reflect the changes.
  • Create Update Route: Implement an UPDATE route that allows modifying book or user data. When an update is requested (like changing a book's title, author, or user’s name), the server will capture the new values, update the collection, and reflect these changes on the front end.

Steps to Build a Library Management System Using NodeJS

Step 1: Create a Project Folder

Open your terminal (Command Prompt/PowerShell) and run the following commands:

mkdir library-management-system
cd library-management-system

Step 2: Initialize a NodeJS Project

Run the following command to create a package.json file:

npm init -y

Step 3: Install Dependencies

Run the following command to install the required dependencies:

npm install express ejs body-parser

This installs

  • Express: Backend framework.
  • EJS: Templating engine.
  • Body-parser: To handle form submissions.

Step 4: Create Server File

Create a file named app.js and require the Express module. Then, create an Express instance and set EJS as the default view engine.

JavaScript
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const PORT = 3000;

// Sample Book Data
let books = [
    {
        bookName: "Rudest Book Ever",
        bookAuthor: "Shwetabh Gangwar",
        bookPages: 200,
        bookPrice: 240,
        bookState: "Available"
    },
    {
        bookName: "Do Epic Shit",
        bookAuthor: "Ankur Wariko",
        bookPages: 200,
        bookPrice: 240,
        bookState: "Available"
    }
];

// Middleware
app.set('view engine', 'ejs');
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));

// Home Route - Display Books
app.get("/", (req, res) => {
    res.render("home", { data: books });
});

// Add Book Route
app.post("/", (req, res) => {
    const newBook = {
        bookName: req.body.bookName,
        bookAuthor: req.body.bookAuthor,
        bookPages: req.body.bookPages,
        bookPrice: req.body.bookPrice,
        bookState: "Available"
    };

    books.push(newBook);
    res.render("home", { data: books });
});

// Issue Book Route
app.post("/issue", (req, res) => {
    const requestedBookName = req.body.bookName;
    books.forEach(book => {
        if (book.bookName === requestedBookName) {
            book.bookState = "Issued";
        }
    });
    res.render("home", { data: books });
});

// Return Book Route
app.post("/return", (req, res) => {
    const requestedBookName = req.body.bookName;
    books.forEach(book => {
        if (book.bookName === requestedBookName) {
            book.bookState = "Available";
        }
    });
    res.render("home", { data: books });
});

// Delete Book Route
app.post("/delete", (req, res) => {
    const requestedBookName = req.body.bookName;
    books = books.filter(book => book.bookName !== requestedBookName);
    res.render("home", { data: books });
});

// Start Server
app.listen(PORT, () => {
    console.log(`App is running on port ${PORT}`);
});

In this code:

  • Body-parser middleware is used to parse incoming request data (such as form submissions) so it can be easily accessed in the request handler (req.body).
  • EJS is set as the view engine, allowing dynamic rendering of HTML templates.
  • A sample array of books (books) is defined, with each book having properties such as bookName, bookAuthor, bookPages, bookPrice, and bookState (which indicates if the book is available or issued).
  • The root route (/) renders the home.ejs page and sends the books array as data to the page. The data is dynamically displayed using EJS on the frontend.
  • The POST route for / is used to add a new book to the books array. The book’s details (name, author, pages, price) are captured from the form in the frontend and sent to the server.
  • The new book is then added to the array, and the updated list of books is re-rendered on the page.

Step 5: Set Up Views Directory

Create a views folder in your root directory and inside it, create a file called home.ejs.

Step 6: Create the Home Page (home.ejs)

Inside views/home.ejs, add the following code

HTML
<html>
<head>
    <style>
        table {
            font-family: Arial, sans-serif;
            border-collapse: collapse;
            width: 100%;
        }
        td, th {
            border: 1px solid #dddddd;
            text-align: left;
            padding: 8px;
        }
        tr:nth-child(even) {
            background-color: #dddddd;
        }
    </style>
</head>
<body>
    <h1>Library Management System</h1>
    <!-- Display Books -->
    <h2>All Books</h2>
    <table>
        <tr>
            <th>Book Name</th>
            <th>Book Author</th>
            <th>Book Pages</th>
            <th>Book Price</th>
            <th>Book Availability</th>
            <th>Issue</th>
            <th>Return</th>
            <th>Delete</th>
        </tr>
        <% data.forEach(element => { %>
            <tr>
                <td><%= element.bookName %></td>
                <td><%= element.bookAuthor %></td>
                <td><%= element.bookPages %></td>
                <td><%= element.bookPrice %></td>
                <td><%= element.bookState %></td>
                <td>
                    <% if (element.bookState === "Available") { %>
                        <form action="/issue" method="post">
                            <input type="hidden" name="bookName" value="<%= element.bookName %>">
                            <button type="submit">Issue</button>
                        </form>
                    <% } %>
                </td>
                <td>
                    <% if (element.bookState === "Issued") { %>
                        <form action="/return" method="post">
                            <input type="hidden" name="bookName" value="<%= element.bookName %>">
                            <button type="submit">Return</button>
                        </form>
                    <% } %>
                </td>
                <td>
                    <form action="/delete" method="post">
                        <input type="hidden" name="bookName" value="<%= element.bookName %>">
                        <button type="submit">Delete</button>
                    </form>
                </td>
            </tr>
        <% }) %>
    </table>
    <!-- Add Book Form -->
    <h2>Add Book</h2>
    <form action="/" method="post">
        <input type="text" placeholder="Book Name" name="bookName" required>
        <input type="text" placeholder="Book Author" name="bookAuthor" required>
        <input type="number" placeholder="Book Pages" name="bookPages" required>
        <input type="number" placeholder="Book Price" name="bookPrice" required>
        <button type="submit">Add</button>
    </form>
</body>
</html>

Output

node app.js

Conclusion

In this guide, we have walked through the process of building a simple Library Management System using NodeJS with Express.js, EJS, and Body Parser. This system allows administrators to manage books by performing various operations such as: adding new books to the library, Viewing a list of books with details like name, author, pages, price, and availability, Issuing and returning books to track their availability, Deleting books from the library.


Next Article
Student Management System using Express.js and EJS Templating Engine

D

devaadi
Improve
Article Tags :
  • Web Technologies
  • Node.js
  • NodeJS-Questions
  • EJS-Templating Language
  • Library Management System
  • Node.js - Projects

Similar Reads

    AI and Machine Learning

    AI Whatsapp Bot using NodeJS, Whatsapp-WebJS And Gemini AI
    This WhatsApp bot is powered by Gemini AI API, where you can chat with this AI bot and get the desired result from the Gemini AI model. This bot can be used in groups or personal chats and only needs to be authenticated using the mobile WhatsApp app. Output Preview: Let us have a look at how the fin
    4 min read
    AI-Powered Chatbot Platform with Node and Express.js
    An AI Powered Chatbot using NodeJS and ExpressJS can be created using the free OpenAI's API Key that is provided for every user login. This article covers a basic syntax of how we can use ES6 (EcmaScript Version 6) to implement the functionalities of Node.js and Express.js including the use of REST
    4 min read
    Book Recommendation System using Node and Express.js
    The Book Recommendation System aims to enhance the user's reading experience by suggesting books tailored to their interests and preferences. Leveraging the power of machine learning and natural language processing, the system will analyze user inputs and recommend relevant books from a database. In
    4 min read
    Movie Recommendation System with Node and Express.js
    Building a movie recommendation system with Node and Express will help you create personalized suggestions and recommendations according to the genre you selected. To generate the recommendation OpenAI API is used. In this article, you will see the step-wise guide to build a Movie recommendation sys
    3 min read

    Web and API Development

    How to build Node.js Blog API ?
    In this article, we are going to create a blog API using Node.js. A Blog API is an API by which users can fetch blogs, write blogs to the server, delete blogs, and even filter blogs with various parameters.Functionalities:Fetch BlogsCreate BlogsDelete BlogsFilter BlogsApproach: In this project, we w
    4 min read
    RESTful Blogging API with Node and Express.js
    Blogs Websites have become very popular nowadays for sharing your thoughts among the users over internet. In this article, you will be guided through creating a Restful API for the Blogging website with the help of Node, Express, and MongoDB.Prerequisites:Node JS & NPMExpress JSMongoDBApproach t
    5 min read
    Build a Social Media REST API Using Node.js: A Complete Guide
    Developers build an API(Application Programming Interface) that allows other systems to interact with their Application’s functionalities and data. In simple words, API is a set of protocols, rules, and tools that allow different software applications to access allowed functionalities, and data and
    15+ min read

    Finance and Budgeting

    Budget Tracking App with Node.js and Express.js
    In this article, we’ll walk through the step-by-step process of creating a Budget Tracking App with Node.js and Express.js. This application will provide users with the ability to track their income, expenses, and budgets. It will allow users to add, delete, and view their income and expenses, as we
    15 min read
    Razorpay Payment Integration using Node.js
    Payment gateway is a technology that provides online solutions for money-related transactions, it can be thought of as a middle channel for e-commerce or any online business, which can be used to make payments and receive payments for any purpose.Sample Problem Statement: This is a simple HTML page
    14 min read

    Communication and Social Platforms

    How to Create a Chat App Using socket.io in NodeJS?
    Socket.io is a JavaScript library that enables real-time, bidirectional, event-based communication between the client and server. It works on top of WebSocket but provides additional features like automatic reconnection, broadcasting, and fallback options.What We Are Going to Create?In this article,
    5 min read
    How to make a video call app in node.js ?
    For making a video call app, It is required that each and every client send their video and audio stream to all the other clients. So for this purpose we are using Peer.js and for the communication between the clients and the server we are using WebSocket i.e. Socket.io. Prerequisite: 1. Node.js: It
    5 min read

    Health and Medical

    Health Tracker App Backend Using Node and Express.js
    A Health Tracker App is a platform that allows users to log and monitor various data of their health and fitness. In this article, we are going to develop a Health Tracker App with Node.js and Express.js. that allows users to track their health-related activities such as exercise, meals, water intak
    4 min read
    Hospital Appointment System using Express
    Hospital Appointment System project using Express and MongoDB contains various endpoints that will help to manage hospital appointments. In this project, there is an appointment endpoint for user management and appointment management. API will be able to register users, authenticate users, book appo
    12 min read
    Covid-19 cases update using Cheerio Library
    In this article we are going to learn about that how can we get the common information from the covid website i.e Total Cases, Recovered, and Deaths using the concept of scraping with help of JavaScript Library. Library Requirements and installation: There are two libraries that are required to scra
    3 min read

    Management Systems

    Customer Relationship Management (CRM) System with Node.js and Express.js
    CRM systems are important tools for businesses to manage their customer interactions, both with existing and potential clients. In this article, we will demonstrate how to create a CRM system using Node.js and Express. We will cover the key functionalities, prerequisites, approach, and steps require
    15+ min read
    Library Management Application Backend
    Library Management System backend using Express and MongoDB contains various endpoints that will help to manage library users and work with library data. The application will provide an endpoint for user management. API will be able to register users, authenticate users, borrow books, return books,
    10 min read
    How to Build Library Management System Using NodeJS?
    A Library Management System is an essential application for managing books, users, and transactions in a library. It involves adding, removing, updating, and viewing books and managing users. In this article, we will walk through how to build a simple Library Management System using NodeJS.What We A
    6 min read
    Student Management System using Express.js and EJS Templating Engine
    In this article, we build a student management student which will have features like adding students to a record, removing students, and updating students. We will be using popular web tools NodeJS, Express JS, and MongoDB for the backend. We will use HTML, CSS, and JavaScript for the front end. We'
    5 min read
    Subscription Management System with NodeJS and ExpressJS
    In this article, we’ll walk through the step-by-step process of creating a Subscription Management System with NodeJS and ExpressJS. This application will provide users with the ability to subscribe to various plans, manage their subscriptions, and include features like user authentication and autho
    5 min read
    Building a Toll Road Management System using Node.js
    In this article, we are going to build a simple Toll Road Management System using Node.js, where the data will be stored in a local MongoDB database.Problem Statement: In a toll tax plaza, it is difficult to record all the transactions and store them in a single place, along with that, if required,
    15+ min read
    How to Build User Management System Using NodeJS?
    A User Management System is an essential application for handling user accounts and information. It involves creating, reading, updating, and deleting user accounts, also known as CRUD operations. In this article, we will walk through how to build a simple User Management System using NodeJS.What We
    6 min read
    User Management System Backend
    User Management System Backend includes numerous endpoints for performing user-dealing tasks. The backend could be constructed with the use of NodeJS and MongoDB with ExpressJS . The software will offer an endpoint for consumer management. API will be capable of registering, authenticating, and cont
    4 min read

    File and Document Handling

    Build a document generator with Express using REST API
    In the digital age, the need for dynamic and automated document generation has become increasingly prevalent. Whether you're creating reports, invoices, or any other type of document, having a reliable system in place can streamline your workflow. In this article, we'll explore how to build a Docume
    2 min read
    DOCX to PDF Converter using Express
    In this article, we are going to create a Document Conversion Application that converts DOCX to PDF. We will follow step by step approach to do it. We also make use of third-party APIs.Prerequisites:Express JS multernpm Preview of the final output: Let us have a look at how the final output will loo
    4 min read
    How to Send Email using NodeJS?
    Sending emails programmatically is a common requirement in many applications, especially for user notifications, order confirmations, password resets, and newsletters. In this article, we will learn how to build a simple email-sending system using NodeJS. We will use Nodemailer, a popular module for
    5 min read
    File Sharing Platform with Node.js and Express.js
    In today's digital age, the need for efficient File sharing platforms has become increasingly prevalent. Whether it's sharing documents for collaboration or distributing media files, having a reliable solution can greatly enhance productivity and convenience. In this article, we'll explore how to cr
    4 min read
    React Single File Upload with Multer and Express.js
    When we want to add functionality for uploading or deleting files, file storage becomes crucial, whether it's for website or personal use. The File Storage project using Express aims to develop a web application that provides users with a secure and efficient way to store and manage their files onli
    5 min read

    Entertainment and Media

    Music Playlist Manager with Node.js and Express.js
    In this article, we’ll walk through the step-by-step process of creating a Music Playlist Manager with NodeJS and ExpressJS. This application will provide users with the ability to register, log in, create playlists, add tracks to playlists, update playlists, delete playlists, and manage their user
    14 min read
    Sports Score Tracker with NodeJS and ExpressJS
    In sports, real-time updates and scores are very important for fans so that they can stay engaged and informed. In this tutorial, we'll explore how to build a Sports Score Tracker using Node.js and Express.js. Preview Image: Preview lookPrerequisitesJavaScriptNode.jsnpmExpress.jsWorking with APIsApp
    4 min read

    Task and Project Management

    Task Management System using Node and Express.js
    Task Management System is one of the most important tools when you want to organize your tasks. NodeJS and ExpressJS are used in this article to create a REST API for performing all CRUD operations on task. It has two models User and Task. ReactJS and Tailwind CSS are used to create a frontend inter
    15+ min read
    Task Manager App using Express, React and GraphQL.
    The Task Manager app tool is designed to simplify task management with CRUD operation: creation, deletion, and modification of tasks. Users can easily generate new tasks, remove completed ones, and update task details. In this step-by-step tutorial, you will learn the process of building a Basic Tas
    6 min read
    Simple Task Manager CLI Using NodeJS
    A Task Manager is a very useful tool to keep track of your tasks, whether it's for personal use or a work-related project. In this article, we will learn how to build a Simple Task Manager CLI (Command Line Interface) application using Node.js.What We Are Going to Create?We will build a CLI task man
    5 min read
    Task Scheduling App with Node and Express.js
    Task Scheduling app is an app that can be used to create, update, delete, and view all the tasks created. It is implemented using NodeJS and ExpressJS. The scheduler allows users to add tasks in the cache of the current session, once the app is reloaded the data gets deleted. This can be scaled usin
    4 min read
    Todo List CLI application using Node.js
    CLI is a very powerful tool for developers. We will be learning how to create a simple Todo List application for command line. We have seen TodoList as a beginner project in web development and android development but a CLI app is something we don't often hear about.Pre-requisites:A recent version o
    13 min read

    Real-Time Applications

    Real Time News Aggregator with NodeJS and ExpressJS
    In this article, we will create a real time news application with the help of NodeJS and ExpressJS. This article consists of several main functionalities. First, we will display the news article. Then we have implemented the search functionality to search news based on the title of the news. Then we
    4 min read
    Real-Time Auction Platform using Node and Express.js
    The project is a Real-Time Auction Platform developed using Node.js Express.js and MongoDB database for storing details where users can browse different categories of products, view ongoing auctions, bid on items, and manage their accounts. The platform also allows sellers to list their products for
    12 min read
    Real-Time Polling App with Node and React
    In this article, we’ll walk through the step-by-step process of creating a Real-Time Polling App using NodeJS, ExpressJS, and socket.io. This project will showcase how to set up a web application where users can perform real-time polling.Preview of final output: Let us have a look at how the final a
    5 min read
`; $(commentSectionTemplate).insertBefore(".article--recommended"); } loadComments(); }); }); function loadComments() { if ($("iframe[id*='discuss-iframe']").length top_of_element && top_of_screen articleRecommendedTop && top_of_screen articleRecommendedBottom)) { if (!isfollowingApiCall) { isfollowingApiCall = true; setTimeout(function(){ if (loginData && loginData.isLoggedIn) { if (loginData.userName !== $('#followAuthor').val()) { is_following(); } else { $('.profileCard-profile-picture').css('background-color', '#E7E7E7'); } } else { $('.follow-btn').removeClass('hideIt'); } }, 3000); } } }); } $(".accordion-header").click(function() { var arrowIcon = $(this).find('.bottom-arrow-icon'); arrowIcon.toggleClass('rotate180'); }); }); window.isReportArticle = false; function report_article(){ if (!loginData || !loginData.isLoggedIn) { const loginModalButton = $('.login-modal-btn') if (loginModalButton.length) { loginModalButton.click(); } return; } if(!window.isReportArticle){ //to add loader $('.report-loader').addClass('spinner'); jQuery('#report_modal_content').load(gfgSiteUrl+'wp-content/themes/iconic-one/report-modal.php', { PRACTICE_API_URL: practiceAPIURL, PRACTICE_URL:practiceURL },function(responseTxt, statusTxt, xhr){ if(statusTxt == "error"){ alert("Error: " + xhr.status + ": " + xhr.statusText); } }); }else{ window.scrollTo({ top: 0, behavior: 'smooth' }); $("#report_modal_content").show(); } } function closeShareModal() { const shareOption = document.querySelector('[data-gfg-action="share-article"]'); shareOption.classList.remove("hover_share_menu"); let shareModal = document.querySelector(".hover__share-modal-container"); shareModal && shareModal.remove(); } function openShareModal() { closeShareModal(); // Remove existing modal if any let shareModal = document.querySelector(".three_dot_dropdown_share"); shareModal.appendChild(Object.assign(document.createElement("div"), { className: "hover__share-modal-container" })); document.querySelector(".hover__share-modal-container").append( Object.assign(document.createElement('div'), { className: "share__modal" }), ); document.querySelector(".share__modal").append(Object.assign(document.createElement('h1'), { className: "share__modal-heading" }, { textContent: "Share to" })); const socialOptions = ["LinkedIn", "WhatsApp","Twitter", "Copy Link"]; socialOptions.forEach((socialOption) => { const socialContainer = Object.assign(document.createElement('div'), { className: "social__container" }); const icon = Object.assign(document.createElement("div"), { className: `share__icon share__${socialOption.split(" ").join("")}-icon` }); const socialText = Object.assign(document.createElement("span"), { className: "share__option-text" }, { textContent: `${socialOption}` }); const shareLink = (socialOption === "Copy Link") ? Object.assign(document.createElement('div'), { role: "button", className: "link-container CopyLink" }) : Object.assign(document.createElement('a'), { className: "link-container" }); if (socialOption === "LinkedIn") { shareLink.setAttribute('href', `https://www.linkedin.com/sharing/share-offsite/?url=${window.location.href}`); shareLink.setAttribute('target', '_blank'); } if (socialOption === "WhatsApp") { shareLink.setAttribute('href', `https://api.whatsapp.com/send?text=${window.location.href}`); shareLink.setAttribute('target', "_blank"); } if (socialOption === "Twitter") { shareLink.setAttribute('href', `https://twitter.com/intent/tweet?url=${window.location.href}`); shareLink.setAttribute('target', "_blank"); } shareLink.append(icon, socialText); socialContainer.append(shareLink); document.querySelector(".share__modal").appendChild(socialContainer); //adding copy url functionality if(socialOption === "Copy Link") { shareLink.addEventListener("click", function() { var tempInput = document.createElement("input"); tempInput.value = window.location.href; document.body.appendChild(tempInput); tempInput.select(); tempInput.setSelectionRange(0, 99999); // For mobile devices document.execCommand('copy'); document.body.removeChild(tempInput); this.querySelector(".share__option-text").textContent = "Copied" }) } }); // document.querySelector(".hover__share-modal-container").addEventListener("mouseover", () => document.querySelector('[data-gfg-action="share-article"]').classList.add("hover_share_menu")); } function toggleLikeElementVisibility(selector, show) { document.querySelector(`.${selector}`).style.display = show ? "block" : "none"; } function closeKebabMenu(){ document.getElementById("myDropdown").classList.toggle("show"); }
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences