Server Side Rendering React with Express

Поділитися
Вставка
  • Опубліковано 12 вер 2024

КОМЕНТАРІ • 33

  • @avihayasraf2404
    @avihayasraf2404 2 місяці тому

    Thank you for a very demonstrative video. I've been looking at different manuals/guides for how to set up a simple demo with server components, and jeez most of those guides are not very good. some work with very very experimental packages or with next.js and create react app and ect.
    This is the only guide i came across that only requires express & webpack and it works. Thanks.

  • @duypkthg592
    @duypkthg592 6 місяців тому

    To be honest, I couldn't sleep for 3 days to find this video🤣Thank you for this very helpful🥰

  • @DKfolkin
    @DKfolkin 8 місяців тому

    Awsome, no water, so clear. What do you think about RSC. Can you emplement this feature(RSC) to your codebase?

    • @WittCode
      @WittCode  5 місяців тому +1

      I'm not familiar with RSC but I can give it a look!

  • @tothebeat5967
    @tothebeat5967 Місяць тому

    What if you are using something like redux state? How would you go around that?

    • @WittCode
      @WittCode  Місяць тому

      I'm not totally familiar with redux but I assume that, at its core, it's just a JavaScript package. This means it will be in the bundled React code. So it should be fine!

  • @andrewdatar9880
    @andrewdatar9880 10 місяців тому

    Great setup! Thank you for sharing. Your blog is awesome too. Please fix broken images in articles (pointing to localhost), example - in WebSockets Explained article

    • @WittCode
      @WittCode  10 місяців тому +3

      Hey there thanks! And yeah It's been broken for a while I believe can't believe I have it pointing to localhost lol but I'll fix it!

  • @spuriushs6314
    @spuriushs6314 7 місяців тому

    help me pls, how to use nodemon or something simillar on this project?

  • @karthikraj9394
    @karthikraj9394 2 місяці тому

    hi will it work on application which uses framer motion?

    • @WittCode
      @WittCode  Місяць тому

      Hey there! Im not sure what framer motion is!

  • @nameismani9318
    @nameismani9318 7 місяців тому

    can you upload video how to add css files tailwindcss in ssr and how to deploy it in netlify

    • @WittCode
      @WittCode  5 місяців тому

      Not familiar with Netlify but definitley sounds like a good topic!

  • @Houseofwebz
    @Houseofwebz 5 місяців тому

    please how does one host/deploy a react app that was built using ssr?

    • @WittCode
      @WittCode  5 місяців тому +1

      Good future video topic!

    • @Houseofwebz
      @Houseofwebz 5 місяців тому

      @@WittCode bring it on bro! Patiently waiting

  • @VishalSharma-ri8mo
    @VishalSharma-ri8mo 9 місяців тому

    Please tell me how can I handle cookies with ssr data route array?

    • @WittCode
      @WittCode  9 місяців тому

      Hey there! What do you mean? How to use cookies with SSR? Cookies shouldnt be impacted by using SSR! They will still be sent with each request if they are set on the client correctly

  • @Mari_Selalu_Berbuat_Kebaikan
    @Mari_Selalu_Berbuat_Kebaikan 5 місяців тому

    Let's always do alot of good

  • @MishraXE
    @MishraXE 9 місяців тому

    server started on port undefined, in server.js const PORT = process.env.PORT not working, I'm doing exactly same as the video

    • @WittCode
      @WittCode  9 місяців тому

      sounds like your environment variables aren't being set. How are you running the program?

    • @MishraXE
      @MishraXE 9 місяців тому

      @@WittCode I debugged my code and found that there was a typo in my code in new webpack.EnvironmentPlugin. And those clean, build, start commands are working fine on windows. But one problem though, that it throughing error if I use a .css file for styling

    • @WittCode
      @WittCode  9 місяців тому

      @@MishraXE nice! and as for those CSS files they will need to be added to the webpack configuration so they are imported. Ive never actually done ssr with straight CSS though I use MUI...

  • @noahmilliken4259
    @noahmilliken4259 10 місяців тому

    How com you chose to use webpack?

    • @WittCode
      @WittCode  10 місяців тому +1

      I just know the most about webpack haha so I like to use it

  • @user-yyyyy877
    @user-yyyyy877 10 місяців тому

    hello. Is there a way to run it without building it?

    • @WittCode
      @WittCode  10 місяців тому

      You mean without building the react app with webpack?

    • @user-yyyyy877
      @user-yyyyy877 10 місяців тому

      sorry. I'm using a translator, so my words may sound strange. Can I run SSR using the devServer option in development mode? In other words, I am curious about whether it can be run without bundling (npm run build).@@WittCode

    • @WittCode
      @WittCode  10 місяців тому

      no worries@@user-yyyyy877 ! Yeah so I could actually make a video on this. Im pretty sure you can do it using webpack dev server but the way I do it in development is use webpack --watch for JSX files and then have nodemon to check for any changes in the compiled js in the build folder. Lmk if that makes sense. So you basically have two watches. One on the project itself and another on the build folder. There might be a better way to do it but that's what has worked for me!

    • @user-yyyyy877
      @user-yyyyy877 10 місяців тому

      @@WittCode Thank you so much for your reply! I will also test it as you said.!!! :)

  • @romanmed9035
    @romanmed9035 5 місяців тому

    can i use redux with this rendering?

    • @WittCode
      @WittCode  5 місяців тому

      Wouldn't see why you can't!

    • @romanmed9035
      @romanmed9035 5 місяців тому

      @@WittCode I don't understand how it will work in two places at the same time. I suggest making a video on this topic.