MERN Stack E-commerce Integration,Reactjs,Nodejs,Express,Mongodb, Redux Toolkit,RTK Query,TypeScript

Поделиться
HTML-код
  • Опубликовано: 29 дек 2023
  • In this video, we'll be creating a MERN Stack E-commerce App using Reactjs, Nodejs, Express, Mongodb, Redux Toolkit, RTK Query, and TypeScript.
    This e-commerce app will allow you to shop for clothes, accessories, and home goods. We'll be using the MERN Stack to build this app, which includes Reactjs, Nodejs, Express, MongoDB, Redux, and TypeScript. This is a great way to learn more about the MERN Stack and how to build an e-commerce app using it.
    Join Discord: / discord
    Join this channel to get access to perks:
    / @6packprogrammer
    Watch Part 1: • MERN Stack E-commerce ...
    Watch Part 2: • MERN Stack E-commerce ...
    Hello everyone, my name is Abhishek Singh, the only programmer in the world with 6 pack abs and you are watching 6 pack programmer.
    Demo: ecommerce-frontend.fr.to/
    Admin Dashboard Code: drive.google.com/file/d/1yvF9...
    Frontend Code: github.com/meabhisingh/mern-e...
    Server Code: github.com/meabhisingh/mern-e...
    Udemy Course - www.udemy.com/course/mern-sta...
    TypeScript - • Master TypeScript in o...
    Node - • Node JS Made Easy in H...
    React In One Video - • MASTER REACT JS IN ONE...
    React Full Course - • REACT JS COURSE 2023
    Express - • Express JS in One Less... \
    MongoDB - • Master MongoDB: A Comp...
    Master Backend In One Video - • Master the BACKEND in ...
    RestApi - • Build a RESTful API: A... (optional)
    In 2023, it is the most practical web development course on RUclips. We will understand each concept theoretically as well as practically. After understanding the concepts, we will create projects and do fun challenges.
    So make sure to subscribe to my channel, So you can't miss any updates.
    Web Development Playlist: • Become a Web Developme...
    NextJS - • Next Level Next.js: Ma...
    React Js Full Playlist: • REACT JS COURSE 2023
    Product Used
    Camera: amzn.to/3I5G0bC
    Alternate Camera: amzn.to/3YxEvbt
    Processor: amzn.to/40Cav02
    RAM: amzn.to/3YgEAAw
    Motherboard: amzn.to/3XbFrBf
    SSD: amzn.to/3RMmN1Y
    Guitar: amzn.to/3xbnOqw
    Monitor: amzn.to/3JVh33Q
    Laptop: amzn.to/3lmfJwx
    Keyboard: amzn.to/3jKg3oI
    Keyboard Wireless: amzn.to/40GNuc6
    Touch Panel: amzn.to/3XgdGHC
    ------------------------------------ FOLLOW ME -------------------------------
    ruclips.net/user/6packprogramme...
    / meabhisingh
    / meabhisingh

Комментарии • 292

  • @6PackProgrammer
    @6PackProgrammer  2 месяца назад +3

    Join Discord: discord.gg/mhRB3wuS33

  • @theredbandicoot
    @theredbandicoot 3 месяца назад +20

    1. Quick Tip: (💡React Router Dom Tip )
    2. Error while Deleting A Product - 2:58:55
    3. Stripe Card Payment Error - 5:08:54
    4. Product Stock not updating after Order placed - 5:19:48
    👉1. React Router Dom Tip :
    If you currently this path `/admin/product/new` for creat a new product and then after product successfully created, you wanted to navigate the user to previous path `/admin/product` - 2:38:38 don't write it down this way
    `navigate("/admin/product")` - 2:38:38
    just use two dots. for go back to previous path
    `navigate("..")` or `navigate(-1)` - 2:37:05
    you can also add an option, how you want to go back "path" or "route"
    `navigate("..", { relative : "path" })` - 2:37:05
    ℹPlease Read react router dom docs for more info
    👉2. Error while Deleting A Product : - 2:58:55
    While deleting a product if you get an error on browser console or in terminal (400 status ) then it happen only because invalidate tag in delete product.
    After deleting the product it’s still refetching the product that’s why 400 bad request come in console.
    To prevent this just add another tag in your tagType (e.g. “allProduct”)
    Add this tag in all providers tag except product detail (Don’t need while deleting product )
    And make sure to remove ‘product’ invalidate tag from delete product
    👉3. Stripe Card Payment Error - 5:08:54
    while payment process you might see an error if you're using latest version of stripe
    ⛔ERROR⛔
    As per Indian regulations, only registered Indian businesses (i.e. sole proprietorships, limited liability partnerships and companies, but not individuals) can accept international payments. More info here: stripe.com/docs/india-exports
    To Resolve this problem (for testing as per stripe docs) just use this card number 4000003560000123, 4000003560000297
    👉4. Product Stock not updating after Order placed - 5:19:48
    After Order Placed and navigate to orders then go to all products in /admin/product and you can see product stock not
    change.
    That because after order placed update product cache not Invalidate that's why in all product new data not fetching
    If you refresh you can see the updated stock in your products
    To Resolve this Problem, in product page from `useAllProductsQuery` hooks call refetch function and use it in useEffects for force to refetch data.
    But this way everytime when you open the product page data refetch. So we don't wanted that. To Fix this
    ▫Create a boolean state in your cartReducer initialState named e.g. `isRefetch` and default value `false`.
    ▫Create a action called `refetchProduct` code 👇👇
    ```
    refetchProduct: (state, action: PayloadAction) => {
    state.isRefetch = action.payload;
    }
    ```
    ▫In checkout page after `dispatch(resetCart())` add this call this action => `dispatch(refetchProduct(true))`
    ▫Back in product page called `isRefetch` from cartReducer and add dependency in useEffect and before mount the Data
    add this line
    ```
    if (isRefetch) refetch();
    dispatch(refetchProduct(false));
    ```
    now check.

    • @skannu3155
      @skannu3155 3 месяца назад +1

      thanks mate
      do you solved the stripe payment problem?

    • @theredbandicoot
      @theredbandicoot 3 месяца назад

      @@skannu3155 timestamp?

    • @skannu3155
      @skannu3155 3 месяца назад

      @@theredbandicoot 5:17:00 onwards I think Indian exports requires description like that can you share me your GitHub repo ?

    • @arcaneknight1164
      @arcaneknight1164 3 месяца назад

      Bro I run the frontend code but when I open it on my browser ntng is showing just a blank white page what can be the reason?

    • @theredbandicoot
      @theredbandicoot 3 месяца назад

      @@arcaneknight1164 show me the code

  • @devkumar9889
    @devkumar9889 4 месяца назад +19

    00:13 Setting up backend and frontend
    03:08 Setting up E-commerce integration for Reactjs and Nodejs
    09:26 Integration of Firebase authentication in MERN stack with Redux Toolkit
    12:44 Integration of MERN Stack E-commerce with Redux Toolkit and RTK Query
    18:25 Setting up the back end server and creating the user API
    21:11 Explanation of mutation and query in Redux Toolkit Query
    26:15 MERN stack e-commerce integration with React, Node, Express, MongoDB, Redux Toolkit, RTK Query and TypeScript.
    28:31 Creating user types with export and interfaces
    33:45 Middleware usage in MERN stack
    36:00 Implementing user registration and login with MERN stack.
    41:15 Integration and testing of the server and API
    44:01 Setting up back end for e-commerce integration
    49:24 Integration of user data in e-commerce backend
    52:19 Integrating Redux and Firebase Token in E-commerce Implementation
    57:04 Understanding Redux Toolkit and RTK Query
    59:27 Explanation of creating reducer in the MERN stack
    1:04:16 Using Firebase for user authentication and dispatching actions with Redux
    1:07:03 Import from React Redux and use dispatch
    1:12:23 Integration and configuration of user authentication in Redux
    1:14:52 Implementing user data retrieval using selectors in MERN stack
    1:20:04 Implementing authentication and admin routes with React
    1:22:54 Handling authentication and redirection based on user status
    1:27:50 Implementing admin access control
    1:30:27 Implementing Admin Dashboard and Access Control.
    1:35:35 Integration of MERN Stack and creation of product API
    1:38:01 Integration of MERN Stack E-commerce with Redux Toolkit and RTK Query
    1:42:42 Integrating MERN stack for e-commerce
    1:45:20 Handling errors and loading in MERN stack integration
    1:50:47 Implementing E-commerce functionality using MERN Stack
    1:53:24 Setting up admin products and handling data types
    1:59:18 Integrating user authentication and state management in MERN stack
    2:02:10 Implementing effect and dependency with skeleton loading
    2:07:48 Integration of MERN Stack E-commerce
    2:10:37 Handling category response and product search
    2:15:53 Discussing the process of writing code and hitting a base query
    2:18:25 Integrating MERN Stack for e-commerce
    2:23:38 MERN Stack E-commerce Integration
    2:26:09 Integration of MERN Stack for E-commerce
    2:32:22 Integrating MERN Stack with E-commerce features
    2:35:19 Integration of Redux Toolkit and RTK Query in E-commerce app
    2:40:41 Caching for new products with revalidation
    2:42:59 Integration of MERN stack for e-commerce
    2:48:19 Integration of MERN stack for e-commerce
    2:51:23 Integration of MERN stack for e-commerce
    2:57:14 Integration of MERN Stack E-commerce using React, Node, Express, MongoDB, Redux Toolkit, RTK Query and TypeScript
    3:00:02 Implementing Delete and Update Product Mutations
    3:05:14 Integration of MERN Stack for e-commerce
    3:07:46 Creating and integrating reducers in MERN Stack E-commerce
    3:13:16 Implementing reducers and actions for MERN Stack E-commerce integration
    3:15:48 Using C Filter in Redux Toolkit to remove specific items from the store.
    3:21:11 Handling item imports and reducing errors
    3:23:25 Handling quantity and adding new items to the e-commerce
    3:28:23 Creating and handling cart items
    3:30:57 Handling product IDs and dispatching in the reducer
    3:35:44 Calculating shipping charges and discounts for e-commerce orders
    3:38:37 Integration and implementation of key functionalities using MERN stack technologies
    3:43:38 Integration of coupon codes for payment discounts
    3:47:01 Integration of discounts in the MERN stack e-commerce application
    3:51:54 E-commerce integration process and payment setup
    3:54:03 Using u selector from redux in React to manage cart items and orders.
    3:59:53 Understanding the process of placing a new order and the required information
    4:02:16 Implementing E-commerce checkout form and order placement
    4:07:17 Integration of e-commerce features using MERN stack technologies.
    4:10:25 Updating and querying order details with MERN stack
    4:16:00 Troubleshooting React component errors
    4:18:59 Handling status colors and errors in the E-commerce integration process.
    4:24:43 Handling table rendering and order processing in the MERN stack e-commerce integration
    4:27:06 Integration of MERN Stack with detailed steps
    5:47:04 MERN stack E-commerce integration
    7:00:53 MERN Stack E-commerce Integration

  • @dharmeshgohil9375
    @dharmeshgohil9375 6 месяцев назад +1

    second like keep it up bro awesome tuttorial

  • @sanamukhtar4008
    @sanamukhtar4008 3 месяца назад +3

    Timestamps :
    00:08 : Firebase & Google login
    15:45 : RTK Query Setup
    53:37 :User Reducer
    1:19:22 : protecting Routes for logged in users
    1:33:46 : RTK Query for Product

  • @muhammadsuleman8936
    @muhammadsuleman8936 4 месяца назад +1

    Amazing Concpets leanred thanks for the tuturials

  • @namanchhabra4136
    @namanchhabra4136 Месяц назад +1

    Completed
    Thanks for the great content

  • @jayeshshaha49
    @jayeshshaha49 4 месяца назад +6

    Finally completed took me almost 1 month to complete this project. Thank you bhaiya for this awesome project

    • @jayeshshaha49
      @jayeshshaha49 3 месяца назад

      @@himanshubundell yeah I even faced that issue , watch Harsh Patak stripe payment integration it worked for me . But still u need small modifications in integration to make it work properly.

    • @jayeshshaha49
      @jayeshshaha49 3 месяца назад +1

      @@VinaySharma-pz9tr yes

    • @arnabsarkar5245
      @arnabsarkar5245 3 месяца назад

      I am also facing the same issue@@himanshubundell

    • @VinaySharma-kz9sk
      @VinaySharma-kz9sk 3 месяца назад

      @@jayeshshaha49 help me to deploy. My add product from dashboard is not working

    • @TechAyush001
      @TechAyush001 3 месяца назад

      @jayesh bhai cn you please share project link ?

  • @rahulkumar-op7ul
    @rahulkumar-op7ul 6 месяцев назад

    Thank you

  • @rishiraj2548
    @rishiraj2548 6 месяцев назад

    Great thanks

  • @cheens5349
    @cheens5349 3 месяца назад

    Finally completed!! took me hella time

  • @coozyCoder
    @coozyCoder 5 месяцев назад +5

    finally completed ... lot of new thing to explore .. keep that good work bro❤

    • @VinaySharma-kz9sk
      @VinaySharma-kz9sk 3 месяца назад

      can you help me with the error

    • @coozyCoder
      @coozyCoder 3 месяца назад

      @@VinaySharma-kz9sk yes sure .. can u provide detail about error

    • @VinaySharma-kz9sk
      @VinaySharma-kz9sk 3 месяца назад

      coupon and stripe

    • @TechAyush001
      @TechAyush001 3 месяца назад

      Bhai can u share ur project link please

    • @Deveshwar-hv1kg
      @Deveshwar-hv1kg 2 месяца назад

      hey can you provide me help with images issue

  • @sanketkothiya3034
    @sanketkothiya3034 6 месяцев назад +1

    thanks sir

  • @sharinglife8389
    @sharinglife8389 4 месяца назад

    Uncaught TypeError: data.orders is undefined this error is there in my transaction and order component as well

  • @gyankibaatwithalkaf5058
    @gyankibaatwithalkaf5058 3 месяца назад

    Helpful 👍

  • @nageshswamii3770
    @nageshswamii3770 3 месяца назад

    Very helpfull and Learned a lot from this video

    • @tanishqchauhan8053
      @tanishqchauhan8053 Месяц назад

      bhai choti si help chaiye

    • @Ayusharma114
      @Ayusharma114 Месяц назад

      ky admin panel pe live data show hota he kyoki source code me toh sara static he

  • @thomasshelby1093
    @thomasshelby1093 18 дней назад

    Sir all the things are going good but after hosting my site when j add new products all photos of the products are visible but after 2-3 hours all photos disappear on its own when i turn off my laptop (i hosted my site and with proper backend and frontend and followed all your instructions)
    Sir please reply

  • @alamshaikh4358
    @alamshaikh4358 6 месяцев назад +2

    Bro make a crash course on chakra-ui because it's not available on RUclips in hindi language.

  • @rajanoobrigaming1450
    @rajanoobrigaming1450 9 дней назад

    Though my web service is running fine according to render logs but the localhost:4000 is not working in local machine . Anyone facing the same issue.help needed.

  • @badamadevi9497
    @badamadevi9497 4 месяца назад +2

    1:59:26 why customError
    Why and from where you are writing customError

  • @RavindraSingh-lp9pl
    @RavindraSingh-lp9pl 6 месяцев назад

    Bhai majaa aagyaa ❤❤

    • @amir4ever148
      @amir4ever148 4 месяца назад

      bhai isme agar card ke alawa upi payment jese paypal google pay bhi add karna ho to kese kare kya stripe mei uska option ata hai?? or kya is project ko production mei istemaal kar sakte hai??

    • @tanishqchauhan8053
      @tanishqchauhan8053 Месяц назад

      bhai choti si help chaiye

  • @nepalihoni9213
    @nepalihoni9213 5 месяцев назад

    Best Ecommerce Project

    • @user-lx6cf3ls4h
      @user-lx6cf3ls4h 3 месяца назад

      Hey, can you help me with the deployment?😊

  • @bharatdubey83
    @bharatdubey83 2 месяца назад

    Sir, can you make a video on building a small project with HTML, CSS and JS and then the same project with React, Redux, Typescript and Tailwind CSS.

  • @suryanshchaudhary6120
    @suryanshchaudhary6120 6 месяцев назад +2

    Most underrated channel ever❤

  • @rohitpandey8840
    @rohitpandey8840 6 месяцев назад

    Why this video is Reuploaded

  • @408sanketdeshmukh3
    @408sanketdeshmukh3 3 месяца назад +2

    Finally Completed ❤❤
    Thank you so much sir ,
    for giving such a mind blowing content !

    • @devanshmishra1862
      @devanshmishra1862 3 месяца назад

      bhai mera stripe mai fass gaya h help

    • @VinaySharma-kz9sk
      @VinaySharma-kz9sk 3 месяца назад

      @@devanshmishra1862 hua??

    • @VinaySharma-kz9sk
      @VinaySharma-kz9sk 3 месяца назад

      @@devanshmishra1862bhai hua solve?

    • @devanshmishra1862
      @devanshmishra1862 3 месяца назад

      @@VinaySharma-kz9sk ha bhai hogya Indian test card use Kara hogyaa kyuki Indian regulations change hogai h

    • @SameerKumar-sd2pu
      @SameerKumar-sd2pu 3 месяца назад

      @@devanshmishra1862 bhai github link dena apne is project ka !

  • @sanamukhtar4008
    @sanamukhtar4008 2 месяца назад

    1:25:30 haven't completed authentication for admin routes

  • @user-nv6wb6jw4z
    @user-nv6wb6jw4z 6 месяцев назад +3

    Can u please add timestamps?

  • @Simple_OG
    @Simple_OG 4 месяца назад

    can you tell me vs code font name ?

  • @CodeSnap01
    @CodeSnap01 5 месяцев назад +3

    just completed its a journey full of emotional ups and down . this is job landing project.

    • @YASHSHARMA-de2kx
      @YASHSHARMA-de2kx 5 месяцев назад +1

      Can you please share your github repo.. Mne same code kra h lekin redux m userReducer implement krte time user k data show nhi ho rha

    • @YASHSHARMA-de2kx
      @YASHSHARMA-de2kx 5 месяцев назад

      data.user krne pr undefined aara h console.log krke hi dekh liya

    • @YASHSHARMA-de2kx
      @YASHSHARMA-de2kx 5 месяцев назад

      Bhai smjh nhi aara.. data.message krne pr work kr rha mne type m bhi message kr diya.... Lekin data.user pr kyu undefined aa rha h🥲

    • @clashwithguts18
      @clashwithguts18 5 месяцев назад

      @@YASHSHARMA-de2kx bhai mera hotha he detha huin

    • @predator-ut7rl
      @predator-ut7rl 4 месяца назад

      ​@@clashwithguts18hua kya bhai??

  • @devkumar9889
    @devkumar9889 4 месяца назад

    Please make a video on Unity game development also

  • @MuhammadZubair-rh3ed
    @MuhammadZubair-rh3ed 6 месяцев назад

    Thk ay

  • @thrishikshetty5279
    @thrishikshetty5279 4 месяца назад

    getting error in stripe paymnet anyone plzz help

  • @yashpandey350
    @yashpandey350 6 месяцев назад +1

    It sounds like: Hmm, Achha, Thik hain...

  • @codeshshubh
    @codeshshubh 13 дней назад

    Redux - 15:45

  • @prabhakarpatel8630
    @prabhakarpatel8630 5 месяцев назад +4

    in Your code the payment intergration showing this kind of error As per Indian regulations, export transactions require a description. please how to resolve this issue

    • @saroj3483
      @saroj3483 5 месяцев назад

      Same issue

    • @prabhakarpatel8630
      @prabhakarpatel8630 5 месяцев назад

      I resolved that error by passing shipping info and user name using use selector from shipping.tsx

    • @Lonelyassassin07
      @Lonelyassassin07 5 месяцев назад

      How do I fix it can you please share me with your code

    • @shriganeshgaming3783
      @shriganeshgaming3783 5 месяцев назад

      ​@@prabhakarpatel8630can you share that part of code please

    • @shriganeshgaming3783
      @shriganeshgaming3783 5 месяцев назад

      U pass them where

  • @swarnabbanerjee9102
    @swarnabbanerjee9102 6 месяцев назад +1

    East or west Abhishek Bhai is best ❤

  • @AshikRahman-fw3sv
    @AshikRahman-fw3sv 6 месяцев назад +6

    Mern stack Payment Gateway Roadmap 2024

    • @amir4ever148
      @amir4ever148 4 месяца назад +1

      bhai isme agar card ke alawa upi payment jese paypal google pay bhi add karna ho to kese kare kya stripe mei uska option ata hai?? or kya is project ko production mei istemaal kar sakte hai??

    • @learnfacts3658
      @learnfacts3658 16 дней назад

      ​@@amir4ever148 stripe me UPI option nahi hai, isliye razorpay best h. Aur ye project learning ke thk production me deploy karne ke liye sahi nahi h. Optimum code e-commerce me different way se likhte h

  • @ManishKumar-tv3ll
    @ManishKumar-tv3ll 5 месяцев назад +1

    photos are deleted automatically after refreshing the page , what should i do

    • @Deveshwar-hv1kg
      @Deveshwar-hv1kg 2 месяца назад

      same mine issue how did you reslove this ??

  • @devchain1
    @devchain1 2 месяца назад +1

    Hi @6 Pack Programmer I am facing these errors when I deploy the frontend in Vercel.
    Error: src/App.tsx(54,34): error TS2339: Property 'user' does not exist on type 'string | UserResponse'.

    • @Deveshwar-hv1kg
      @Deveshwar-hv1kg 2 месяца назад

      you user not found that why maybe ?? are your images working properly ??

    • @thomasshelby1093
      @thomasshelby1093 18 дней назад

      Send me your source code I will help you out

  • @abhishekcode
    @abhishekcode 6 месяцев назад

    Total kitne parts h ❤

  • @OwerChildhood
    @OwerChildhood 6 месяцев назад +6

    bhaiya please bna do extra features.
    bht mst h project.❤
    Or Bhaiya pls discription page me at least 3,4 laga dena

    • @dhruvchaurasia52
      @dhruvchaurasia52 6 месяцев назад +1

      Bhai is playlist mein jo video no 2 hide hai usse koi matlab nahi hai kya ?
      Kon sa part pehle dekhna hai Bata do thoda confusion hai.

    • @OwerChildhood
      @OwerChildhood 6 месяцев назад +1

      Bhai 3videos h part me 1,2,3 one by one dkh le

    • @dhruvchaurasia52
      @dhruvchaurasia52 6 месяцев назад

      @@OwerChildhood okay thanks bhai

    • @InvictusGamingOfficial
      @InvictusGamingOfficial 5 месяцев назад

      2nd video mein pura backend hain aur third part mein woh backend frontend ke saath intigrate kaise hunga ye bataya gaya hain@@dhruvchaurasia52

    • @YASHSHARMA-de2kx
      @YASHSHARMA-de2kx 5 месяцев назад

      Bhai mujhe typescript nhi aati Or tailwind css bhi nhi aati, to kya mujhe ye project start krna chahiye?

  • @Mugiwara028
    @Mugiwara028 6 месяцев назад

    Yeh error aa raha h koi solution

  • @arnabsarkar5245
    @arnabsarkar5245 3 месяца назад +1

    5:08:55, after clicking on the pay not button, I am getting an error "as per indian regulations export transactions require a description", how to tackle this error?

    • @VinaySharma-kz9sk
      @VinaySharma-kz9sk 3 месяца назад

      Hey, were you able to solve the error?

    • @arnabsarkar5245
      @arnabsarkar5245 3 месяца назад

      Nope. I am not able to find any solution to this, if you have any solution, please share
      @@VinaySharma-kz9sk

    • @arnabsarkar5245
      @arnabsarkar5245 3 месяца назад

      @@VinaySharma-kz9sk No bro, were you?

    • @YoutuberMrYash
      @YoutuberMrYash 2 месяца назад +3

      After further investigation, I realized that there was no issue with the code provided in the question. The main problem was with the card used for testing purposes.
      I was using a US test card for transactions in INR, which led to the error mentioned in the question. The correct approach is to use an Indian test card specifically designed for transactions in INR.
      For testing purposes in INR, it's recommended to use the following Indian Test Visa Card:
      Indian Test Visa Card: 4000 0035 6000 0008

    • @akshatxd9871
      @akshatxd9871 2 месяца назад

      @@RUclipsrMrYash thankyou mere bhai

  • @codeshshubh
    @codeshshubh Месяц назад

    Cart Recucer - 3:7:10
    Applying coupon code - 3:42:17
    Shipping not Accessible without cart item(by direct url) - 3:52:46
    RTK Query for Order - 3:56:17
    Stripe - 4:46:46
    Admin Users Panel : 5:20:33
    RTK Query for Admin Dashboard - 5:35:24
    Deploy - 6:42:39
    Render - 6:53:01
    Mongodb - 6:56:22
    Logout before deploying front end -7:03:40
    No upload folder - 7:07:10
    TableHOC.tsx error - 7:15:50

  • @prabhakarpatel8630
    @prabhakarpatel8630 5 месяцев назад

    Image problem after deployment i think in render it automatically deleted that file from uploads folder ...

  • @kapildahiya5701
    @kapildahiya5701 3 месяца назад +1

    Not uploading image on thw web server 1:42:48 , i am entering the same image url to get the image from the server but image is not uploaded, and
    on the mongodb database photo is stored in this format : ( photo"src\uploads\2621f5f9-a321-4510-b780-7c31f08d4e84.png" )
    {data?.products.map((i) => (

    ))};

  • @amir4ever148
    @amir4ever148 4 месяца назад

    7:24:50 sir hamey agar upi payment like paypal google pay bhi add karna ho to kese kare ?

    • @tanishqchauhan8053
      @tanishqchauhan8053 Месяц назад

      bhai choti si help chaiye

    • @amir4ever148
      @amir4ever148 Месяц назад

      @@tanishqchauhan8053 batao bhai koshish kar sakta hu lekin mene ye project banaya nahi hai

  • @kavitpatel1578
    @kavitpatel1578 2 месяца назад

    stripe : 4:46:00

  • @user-gs8lb4dr2q
    @user-gs8lb4dr2q 4 месяца назад

    we need c# tutorial

  • @sumitchakrabortystudy651
    @sumitchakrabortystudy651 5 месяцев назад

    Is this app running of production?
    Anyone facing any issue?

  • @user-mv7gi5fz5g
    @user-mv7gi5fz5g 6 месяцев назад +1

    1st comment also

  • @parasjain7243
    @parasjain7243 Месяц назад

    Sir Best Hai But Apne Order Detail ko Kuch nhi Bataya

  • @sharinglife8389
    @sharinglife8389 5 месяцев назад

    FirebaseError: Installations: Create Installation request failed with error "400 INVALID_ARGUMENT: API key not valid. Please pass a valid API key." (installations/request-failed).
    my popup is notcoming up on login in and its showing this error

    • @amir4ever148
      @amir4ever148 4 месяца назад

      bhai firbase to paid hai mene ye project start nahi kara hai agar ham is project ko production mei istemaal karey to koi dikkat to nahi hogi

    • @sharinglife8389
      @sharinglife8389 4 месяца назад

      Production me to sb backend server paid hi hote

    • @amir4ever148
      @amir4ever148 4 месяца назад

      @@sharinglife8389arrey matlab isme jo firbase use kra hai usme ham kitna save karsaktey matlab overall is site ko use kar sakte hai kya

    • @tanishqchauhan8053
      @tanishqchauhan8053 Месяц назад

      bhai choti si help chaiye

  • @bobo_v
    @bobo_v 4 месяца назад +1

    jab stripe use ya install kiye wo wala part timestamp krdo bhai

    • @dhruvsinghal97
      @dhruvsinghal97 4 месяца назад

      pichli video m aakhiri m tha bhai

  • @CodeWithGoutam
    @CodeWithGoutam 5 месяцев назад

    u didn't tell how to implement cash on delivery process

  • @sanjeevkumar7094
    @sanjeevkumar7094 Месяц назад

    Bhaiya el udemy NASA learning management system wali website bnao

  • @sayedulkarim474
    @sayedulkarim474 5 месяцев назад

    Payment int 4:40:00

  • @vaibhavallewar1881
    @vaibhavallewar1881 5 месяцев назад

    After deployment image not shown... Any solution for this problem????

  • @arnabsarkar5245
    @arnabsarkar5245 19 дней назад

    Today only i hosted my website, everything was fine, but now i am opening my website again, but no image is showing, anybody else facing the same problem?

    • @thomasshelby1093
      @thomasshelby1093 18 дней назад +1

      Yoo bro
      Same problem

    • @thomasshelby1093
      @thomasshelby1093 18 дней назад +1

      Actually photos are showing only when we add new product and after 2-3 hours the image disappear on its own

    • @arnabsarkar5245
      @arnabsarkar5245 18 дней назад

      @@thomasshelby1093 So what should i do? Use cloudinary?

  • @user-mv7gi5fz5g
    @user-mv7gi5fz5g 6 месяцев назад

    1st like

  • @reall47
    @reall47 6 месяцев назад

    hello bro im facing a cache error whenever i create a user product anything like that it doesnt come in my website until i chnage something in that specific part of backend like if i create a product then i have to rewrite something in newproduct controller like if i just delete one letter and undo it it shows my product and if i dont do that my prodcut dont show in website it is happenging in many parts

    • @InvictusGamingOfficial
      @InvictusGamingOfficial 5 месяцев назад

      try deleting cache and again loading it if there is a change
      in node-cache like set method there is also a delete method so put a condition and revalidate cache again

  • @sakshambhatnagar9664
    @sakshambhatnagar9664 5 месяцев назад +1

    4.48

  • @adityamaurya6462
    @adityamaurya6462 5 месяцев назад

    after deployment the images are showing when added but after sometime they are not visible .Anyone facing same issue ?

    • @VinaySharma-pz9tr
      @VinaySharma-pz9tr 4 месяца назад

      Hey, can you help me to deploy this project?

    • @amir4ever148
      @amir4ever148 4 месяца назад

      @@VinaySharma-pz9tr bhai isme agar card ke alawa upi payment jese paypal google pay bhi add karna ho to kese kare kya stripe mei uska option ata hai?? or kya is project ko production mei istemaal kar sakte hai??
      mene suna firbase paid uski wajah se koi dikkat to nahi hogi

    • @tanishqchauhan8053
      @tanishqchauhan8053 Месяц назад

      hua kya ye solution solve?

    • @adityamaurya6462
      @adityamaurya6462 Месяц назад

      @@tanishqchauhan8053 I think wo render ka issue hai, free version me disk ni dete wo , so image file remove ho ja rhi i guess after sometime.

    • @tanishqchauhan8053
      @tanishqchauhan8053 Месяц назад

      @@adityamaurya6462 so theek kaise kare usko?

  • @Deveshwar-hv1kg
    @Deveshwar-hv1kg 2 месяца назад +1

    How to fix images issues ??

    • @tanishqchauhan8053
      @tanishqchauhan8053 Месяц назад

      hua kya shi?

    • @Deveshwar-hv1kg
      @Deveshwar-hv1kg Месяц назад

      @@tanishqchauhan8053 nahi we need disk storage for that and it's paid

    • @thomasshelby1093
      @thomasshelby1093 18 дней назад

      ​@@Deveshwar-hv1kgbhai you mean ki host krke ke baad image gayab ho jati hai vo ?? Mera bhi same issue hai ...aap konse issue ki bat kr rhe ho

  • @badamadevi9497
    @badamadevi9497 4 месяца назад +1

    1:59:42 starting me aapne bola ki typescript samjhate rahunga but aap to sirf likh hi rahe ho 1:59:42

    • @entitleop5206
      @entitleop5206 4 месяца назад

      Bhai itna hate kyu....tumhe nhi samaj aa rha to kya abhisekh bhai galat samja rhe...samajne ka kosis kr ,naki galati dhundhne ka

  • @AshikRahman-fw3sv
    @AshikRahman-fw3sv 6 месяцев назад

    full stack developer payment gateway Roadmap making

  • @sanamukhtar4008
    @sanamukhtar4008 3 месяца назад +2

    13:00

  • @amt.7rambo670
    @amt.7rambo670 5 месяцев назад

    7:04:39

  • @dhruvsinghal97
    @dhruvsinghal97 4 месяца назад

    kisi ki deployment k baad images m dikat aari h kya ki thodi der baad images show nhi hoti upload k time to show hoti h
    Shayd render images ko load nhi krta acche se

    • @prakharsinha4145
      @prakharsinha4145 4 месяца назад

      hey dhruv, is deployment covered in this part ? and everything working well ?

    • @prakharsinha4145
      @prakharsinha4145 4 месяца назад

      where he deployed, if deployment is covered ?

    • @dhruvsinghal97
      @dhruvsinghal97 4 месяца назад

      @@prakharsinha4145 at the end deployment is working well but the main issue is with free server by render as it is taking lot of time for first request and image will not show after that also

    • @prakharsinha4145
      @prakharsinha4145 4 месяца назад

      @@dhruvsinghal97 OKAY Thanks for letting me know!

    • @tanishqchauhan8053
      @tanishqchauhan8053 Месяц назад

      @@dhruvsinghal97 bhai image wali problrm shi hui?

  • @amt.7rambo670
    @amt.7rambo670 5 месяцев назад +1

    bhai next js use kyun nahi karte

  • @badamadevi9497
    @badamadevi9497 4 месяца назад +1

    Aapane to kuchh samjhaya hi ni hai
    Ki koi chij kyu likh rahe hai

  • @DVHcoding
    @DVHcoding 4 месяца назад +1

    14:35 Login with firebase

    • @amir4ever148
      @amir4ever148 4 месяца назад

      bhai isme agar card ke alawa upi payment jese paypal google pay bhi add karna ho to kese kare kya stripe mei uska option ata hai?? or kya is project ko production mei istemaal kar sakte hai??
      mene suna firbase paid uski wajah se koi dikkat to nahi hogi

  • @user-ds8jt8ux9i
    @user-ds8jt8ux9i 4 месяца назад

    heelo

  • @adityamaurya6462
    @adityamaurya6462 6 месяцев назад +3

    stripe not working for http server ,anyone facing same problem ?

    • @nepalihoni9213
      @nepalihoni9213 5 месяцев назад

      yes bro same problem how do i solve it ?

    • @amir4ever148
      @amir4ever148 4 месяца назад

      bhai isme agar card ke alawa upi payment jese paypal google pay bhi add karna ho to kese kare kya stripe mei uska option ata hai?? or kya is project ko production mei istemaal kar sakte hai??
      mene suna firbase paid uski wajah se koi dikkat to nahi hogi

  • @6PackProgrammer
    @6PackProgrammer  2 месяца назад +2

    Full Course: ruclips.net/p/PLt5mNkGuWcuUKFyFzdZ9C37EMR-jd8ZG9

    • @namanchhabra4136
      @namanchhabra4136 Месяц назад

      Stripe is not avialable in INDIA
      what to do now ???

    • @ranjeet5581
      @ranjeet5581 22 дня назад

      @@namanchhabra4136 just select country USA it will work

  • @fayan02126
    @fayan02126 3 месяца назад

    Anyone have payment Indian regulations...... Error contact me

    • @skannu3155
      @skannu3155 3 месяца назад

      R u asking for the answer or you are providing it?

  • @dev_bhiaya
    @dev_bhiaya 6 месяцев назад

    WHTAS UR AGE

  • @sakshambhatnagar9664
    @sakshambhatnagar9664 5 месяцев назад

    4:48:30

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @badamadevi9497
    @badamadevi9497 4 месяца назад

    Agar hm logo ko itna hi pata hota to aapke channel par kyu aate ।। Khud se hi bna lete

  • @sajeersayed2008
    @sajeersayed2008 6 месяцев назад +1

    super bro u r the best

    • @amir4ever148
      @amir4ever148 4 месяца назад

      bhai isme agar card ke alawa upi payment jese paypal google pay bhi add karna ho to kese kare kya stripe mei uska option ata hai?? or kya is project ko production mei istemaal kar sakte hai??
      mene suna firbase paid uski wajah se koi dikkat to nahi hogi

  • @fayan02126
    @fayan02126 6 месяцев назад +1

    Project completed🥹💜

    • @imuv21
      @imuv21 4 месяца назад

      How did you make stripe work??

  • @sajeersayed2008
    @sajeersayed2008 6 месяцев назад

    super bor

  • @Bhavisshyya
    @Bhavisshyya 16 дней назад

    I’m getting CORS ERROR, unable to resolve it. Please help🥲
    Included cors in backend but still getting same error

  • @devkumar9889
    @devkumar9889 4 месяца назад +4

    00:13 Setting up backend and frontend
    03:08 Setting up E-commerce integration for Reactjs and Nodejs
    09:26 Integration of Firebase authentication in MERN stack with Redux Toolkit
    12:44 Integration of MERN Stack E-commerce with Redux Toolkit and RTK Query
    18:25 Setting up the back end server and creating the user API
    21:11 Explanation of mutation and query in Redux Toolkit Query
    26:15 MERN stack e-commerce integration with React, Node, Express, MongoDB, Redux Toolkit, RTK Query and TypeScript.
    28:31 Creating user types with export and interfaces
    33:45 Middleware usage in MERN stack
    36:00 Implementing user registration and login with MERN stack.
    41:15 Integration and testing of the server and API
    44:01 Setting up back end for e-commerce integration
    49:24 Integration of user data in e-commerce backend
    52:19 Integrating Redux and Firebase Token in E-commerce Implementation
    57:04 Understanding Redux Toolkit and RTK Query
    59:27 Explanation of creating reducer in the MERN stack
    1:04:16 Using Firebase for user authentication and dispatching actions with Redux
    1:07:03 Import from React Redux and use dispatch
    1:12:23 Integration and configuration of user authentication in Redux
    1:14:52 Implementing user data retrieval using selectors in MERN stack
    1:20:04 Implementing authentication and admin routes with React
    1:22:54 Handling authentication and redirection based on user status
    1:27:50 Implementing admin access control
    1:30:27 Implementing Admin Dashboard and Access Control.
    1:35:35 Integration of MERN Stack and creation of product API
    1:38:01 Integration of MERN Stack E-commerce with Redux Toolkit and RTK Query
    1:42:42 Integrating MERN stack for e-commerce
    1:45:20 Handling errors and loading in MERN stack integration
    1:50:47 Implementing E-commerce functionality using MERN Stack
    1:53:24 Setting up admin products and handling data types
    1:59:18 Integrating user authentication and state management in MERN stack
    2:02:10 Implementing effect and dependency with skeleton loading
    2:07:48 Integration of MERN Stack E-commerce
    2:10:37 Handling category response and product search
    2:15:53 Discussing the process of writing code and hitting a base query
    2:18:25 Integrating MERN Stack for e-commerce
    2:23:38 MERN Stack E-commerce Integration
    2:26:09 Integration of MERN Stack for E-commerce
    2:32:22 Integrating MERN Stack with E-commerce features
    2:35:19 Integration of Redux Toolkit and RTK Query in E-commerce app
    2:40:41 Caching for new products with revalidation
    2:42:59 Integration of MERN stack for e-commerce
    2:48:19 Integration of MERN stack for e-commerce
    2:51:23 Integration of MERN stack for e-commerce
    2:57:14 Integration of MERN Stack E-commerce using React, Node, Express, MongoDB, Redux Toolkit, RTK Query and TypeScript
    3:00:02 Implementing Delete and Update Product Mutations
    3:05:14 Integration of MERN Stack for e-commerce
    3:07:46 Creating and integrating reducers in MERN Stack E-commerce
    3:13:16 Implementing reducers and actions for MERN Stack E-commerce integration
    3:15:48 Using C Filter in Redux Toolkit to remove specific items from the store.
    3:21:11 Handling item imports and reducing errors
    3:23:25 Handling quantity and adding new items to the e-commerce
    3:28:23 Creating and handling cart items
    3:30:57 Handling product IDs and dispatching in the reducer
    3:35:44 Calculating shipping charges and discounts for e-commerce orders
    3:38:37 Integration and implementation of key functionalities using MERN stack technologies
    3:43:38 Integration of coupon codes for payment discounts
    3:47:01 Integration of discounts in the MERN stack e-commerce application
    3:51:54 E-commerce integration process and payment setup
    3:54:03 Using u selector from redux in React to manage cart items and orders.
    3:59:53 Understanding the process of placing a new order and the required information
    4:02:16 Implementing E-commerce checkout form and order placement
    4:07:17 Integration of e-commerce features using MERN stack technologies.
    4:10:25 Updating and querying order details with MERN stack
    4:16:00 Troubleshooting React component errors
    4:18:59 Handling status colors and errors in the E-commerce integration process.
    4:24:43 Handling table rendering and order processing in the MERN stack e-commerce integration
    4:27:06 Integration of MERN Stack with detailed steps
    5:47:04 MERN stack E-commerce integration
    7:00:53 MERN Stack E-commerce Integration

    • @user-lx6cf3ls4h
      @user-lx6cf3ls4h 3 месяца назад

      Hey, can you help me with the deployment?

  • @AshikRahman-fw3sv
    @AshikRahman-fw3sv 6 месяцев назад

    Mern stack Payment Gateway Roadmap 2024

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App

  • @aamirmir9080
    @aamirmir9080 6 месяцев назад

    Build a MULTIVENDOR App