Complete Guide to Fullstack Development: React, Express, MySQL, Node.js - Tutorial

Поделиться
HTML-код
  • Опубликовано: 20 окт 2024

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

  • @rungthiwaratchantam8832
    @rungthiwaratchantam8832 7 месяцев назад +7

    I love this style of teaching😍. Clear and short. Thank you🙏 . You make me undertand the process of the connection between frontend and backend very clear and easy!

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

      Welcome! I'm delighted that the tutorial was helpful to you.

  • @jakeowen9091
    @jakeowen9091 10 месяцев назад +3

    Thanks! I loved this tutorial. As a newcomer to react and nodejs, there was loads of learning for me and I was able to run this on my localhost as well as deploy this to my server. Keep up the great job 👏👏

    • @Lenntecs
      @Lenntecs  10 месяцев назад

      Great news! Well done on getting the tutorial up and running on both your localhost and server. Your feedback is much appreciated, Owen. I'm glad that the tutorial was beneficial to you.

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

    love the fast based style.

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

      Thank you!

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

    Big help because I am transitioning from frontend to backend

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

    I love the way you teach. So amazing

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

      Happy to hear that!

  • @dev_apostle
    @dev_apostle 9 месяцев назад +1

    if you do alot more tutorials like this, that would be great.This is just write to get in a lot of learning

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

      Thank you. I sure will create more tutorials like this. Stay tuned

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

    THIS IS JUST WHAT I NEEDED
    THANK YOU FROM THE BOTTOM OF MY HEART

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

      I'm so glad it helped! You're very welcome!

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

    Thank-you very much for the video. I'm a retired programmer of 35 years and now just playing around with Javascript, MySql, React, etc. This Full-stack video is perfect for learning.
    One question: Why use "{data.map((student) => {" in the Edit.jsx when there is only one student to display?

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

      Thank you for pointing out. From the backend, I returned data as a list, which has only one student during editing. That is why i mapped. You can as well use data[0].

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

      @@Lenntecs I think that's his point. data[0].id, data[0].name, data[0].gender, data[0].email seems like it would not use resources of map(). It's a tiny thing but worth considering.

  • @Usmankhan-cd6zy
    @Usmankhan-cd6zy 8 месяцев назад +1

    Super dooper... thankx... very simplified.....

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

      You are welcome.

  • @paulopalmeira9682
    @paulopalmeira9682 9 месяцев назад +1

    Amazing! Thanks, from Brazil, SP

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

    Amazing Tutorial.....

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

    Can you provide the list of VSCode Extensions you have used for the project? Awesome Explanation btw.

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

      Simple React Snippets

  • @sarahimpextradingenterpris6286
    @sarahimpextradingenterpris6286 12 дней назад +1

    Thank you sir

  • @joypro5278
    @joypro5278 7 месяцев назад +1

    Hope you gonna make it with this channel ❤

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

    Hello! I am new comer to this channel and am struggling to understand how to build the backend i am working on my first project and am using node and mysql but i can't get the basic concepts can u help me?

  • @m4x1mvzofficial36
    @m4x1mvzofficial36 7 месяцев назад +1

    I can't proceed to checking like in 8:50, I encountered an issue "uncought runtime error when opening localhost:3000 to check

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

      Hello, did you manage?

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

      you have to move the proxy setting from package.json from server to the package.json to client. dont mix it up. i fixed it

  • @CharlAlvarado
    @CharlAlvarado 9 месяцев назад +1

    it's okay to access the mysql or insert data even the folder is outside in the htdocs?

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

      Yeah, you can place your backend anywhere, not necessarily inside htdocs folder

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

    6:59 what addon do i need to do autocomplete for rfce ?

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

    Still trying to figure logic. Could you tell me how would i know the sequence of scripts that run? Example: When I execute 'NPM START" from client side, I know the package.json executes, it tells the start.js to run from react-scripts, then I get lost. How does "Home.jsx" get called? Tia

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

      Hello to you. The routes determines which component to be executed. From the base url, if you go to /home or /edit or /create, each of this determines which pages/component to execute.

  • @AbidHussain-v4m
    @AbidHussain-v4m 10 месяцев назад +2

    Fantastic

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

    Update must put the database port number after user- and Alo be careful of file type

  • @Rajesh-rg6fw
    @Rajesh-rg6fw 10 месяцев назад +3

    This is good, but i found you are not following tge best practices, like you could have implemented usereducer, use ref, contex api, also in the use effect use the signal, and also i think components can also further divided in to smaller components.

    • @Lenntecs
      @Lenntecs  10 месяцев назад

      Thank you for your feedback. I appreciate your insights on best practices. I'll review and consider implementing the suggestions you've provided.

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

    its so good thanks so much

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

      You are welcome.

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

    hey can u provide the website link which u host it , i didnt find that

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

      Hello, here: mern.anchortrends.com

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

    in bootstrap why this ui from bootstrap cannont show ?

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

      Hello Rezaulik. To use bootstrap, make sure you install it and then import into the component.

  • @mohamedbenabdous2348
    @mohamedbenabdous2348 7 месяцев назад +1

    can i use with Mssql not MySqL ?

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

      Of course yes. You can use a database of your choosing.

  • @ShivaJaya-z6n
    @ShivaJaya-z6n 7 месяцев назад +1

    How to deploy localhost

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

      Hello, the tutorial does both on localhost and live server. Did you manage to follow it?

  • @debayudhmitra8728
    @debayudhmitra8728 Год назад +2

    PLEASE GIVE THE CLIENT CODE PART TOO. THANK YOU!

    • @Lenntecs
      @Lenntecs  Год назад +2

      hello, sorry for the inconvenience. I have included the client side codes.

    • @debayudhmitra8728
      @debayudhmitra8728 Год назад

      @@Lenntecs thanks!

  • @zb4055
    @zb4055 7 месяцев назад +1

    why xampp?

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

      You can use any database of your choosing. For this tutorial, i chose xampp

  • @kaiden3514
    @kaiden3514 Год назад +1

    *Promo SM* 💔