Skip to main content

Build a Full Stack Book Store App Using React, Node, MongoDB


Curriculum for the course Build a Full Stack Book Store App Using React, Node, MongoDB

Learn to build a comprehensive fullstack MERN stack bookstore website from @mdalmamunit427. This project will cover both frontend and backend development from the ground up. As a MERN stack project, we'll be using React for the frontend, Node.js and Express.js for the backend, and MongoDB as our database. We'll also leverage technologies like Tailwind CSS, Redux, RTK Query Toolkit, Mongoose, and JWT (JSON Web Tokens) to enhance our project. Our bookstore will feature an admin dashboard for managing books, a cash-on-delivery system, and a robust inventory management system. Users can easily add or remove products from their carts, proceed to checkout, and place orders. For admins, we'll create a secure admin dashboard accessible with a username and password. Admins will have the power to upload new books, manage and update existing book information, and delete books as needed. 💻 Starter Files: https://github.com/mdalmamunit427/book-store-app-ui-assets.git 💻 Full Source code: https://github.com/mdalmamunit427/build-full-stack-book-store-mern-app.git ⭐️ Chapters ⭐️ 0:00:00 Introduction 0:01:39 Project Overview 0:12:41 Setup Project 0:22:04 Install Tailwind CSS 0:28:46 Setup React Router DOM 0:43:36 Customize Your Project 0:54:57 Create a Responsive Navbar 1:30:35 Banner Section 1:39:33 Top Sellers Section 2:11:55 Recommend Books 2:15:15 News Section 2:29:01 Footer Section 2:35:21 Login and Register Page 3:03:42 Install Redux Toolkit & Add to Cart 3:31:41 Cart Page, Remove from Cart, Clear Cart 3:43:57 Create Checkout Page 3:54:45 Server Setup, Mongoose & MongoDB 4:19:22 Create Blog Schema & Model 4:24:09 Book Routes & Controllers 5:07:53 Create bookApi using RTK Query & Display Books 5:36:56 Firebase Setup, Implement Login & Register 6:26:39 Private Routes 6:33:13 Create Order Endpoint & Place Order 7:16:58 Create Admin & Verify Token 7:45:30 Admin Router & Dashboard Login 8:07:20 Admin Dashboard: Add, Edit & Delete Books 8:55:58 How to Deploy Your MERN Project 🎉 Thanks to our Champion and Sponsor supporters: 👾 Drake Milly 👾 Ulises Moralez 👾 Goddard Tan 👾 David MG 👾 Matthew Springman 👾 Claudio 👾 Oscar R. 👾 jedi-or-sith 👾 Nattira Maneerat 👾 Justin Hual -- Learn to code for free and get a developer job: https://www.freecodecamp.org Read hundreds of articles on programming: https://freecodecamp.org/news

Watch Online Full Course: Build a Full Stack Book Store App Using React, Node, MongoDB


Click Here to watch on Youtube: Build a Full Stack Book Store App Using React, Node, MongoDB


This video is first published on youtube via freecodecamp. If Video does not appear here, you can watch this on Youtube always.


Udemy Build a Full Stack Book Store App Using React, Node, MongoDB courses free download, Plurasight Build a Full Stack Book Store App Using React, Node, MongoDB courses free download, Linda Build a Full Stack Book Store App Using React, Node, MongoDB courses free download, Coursera Build a Full Stack Book Store App Using React, Node, MongoDB course download free, Brad Hussey udemy course free, free programming full course download, full course with project files, Download full project free, College major project download, CS major project idea, EC major project idea, clone projects download free

What's Hot

CVR Nummer : Register CVR Number for Denmark Generate and Test Online

CVR Nummer : Register CVR Number for Denmark Generate and Test Online | Image credit: Pexel What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your ...

Bing Homepage Quiz: Fun, Win Rewards, and Brain Teasers

Bing, Microsoft's search engine, has taken interactive engagement to the next level with its captivating feature - the Bing Homepage Quiz. This intriguing daily quiz not only challenges your knowledge but also offers a chance to earn rewards. In this comprehensive guide, we will explore the ins and outs of the Bing Homepage Quiz, including how to play, the different types of quizzes, and how you can earn and use rewards through this engaging feature. Bing homepage Quiz | Image credit: LanguageLassi How to Play the Bing Homepage Quiz Playing the Bing Homepage Quiz is simple and enjoyable. Here's how you can get started: Visit Bing : Open your preferred web browser and navigate to the Bing homepage (bing.com). Look for the Quiz : On the Bing homepage, keep an eye out for the interactive quiz card. This card is usually located near the bottom of the page and features a captivating image related to the quiz. Click to Start : Click on the quiz card to begin the quiz. It...

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys