Frontend System Design Mock Interview 2024

Поділитися
Вставка
  • Опубліковано 23 тра 2024
  • ------------------------------------------------------------------------------------------
    👇🏼 HOW WE CAN HELP YOU
    🤔 Find Your Technical Gaps With This FREE 10-Minute Technical Assessment
    learn.theseniordev.com/techni...
    🚀 Get Rid Of Impostor Syndrome And Fast-track To Senior Level
    learn.theseniordev.com/free-tr...
    ------------------------------------------------------------------------------------------

КОМЕНТАРІ • 30

  • @lelandrb
    @lelandrb Місяць тому +7

    I felt like this only began to touch on quite generic frontend system architecture at 17:00. I have not had FE System Design interviews that have asked me to build out the architecture of the entire system. Especially around things like deciding to add a CDN to better handle large loads. I *have* had generic "System Design" interviews do that, though.
    Although the virtualized scrolling mention touches on performance, there was no discussion around state management, internationalization, accessibility, API design, and so on.

    • @therealseniordev
      @therealseniordev  14 днів тому +1

      We are preparing a much more in depth part two :)

  • @anastasiastarostina9309
    @anastasiastarostina9309 Місяць тому +1

    Really helpful! Thank you for making these videos 🙌🏻

  • @madhanravi4365
    @madhanravi4365 Місяць тому +1

    Awesome content, very useful ❤

  • @ignaciopulicedonatto8987
    @ignaciopulicedonatto8987 Місяць тому +1

    Great video guys, keep doing this kind of videos.

  • @pranitapanigrahi3517
    @pranitapanigrahi3517 Місяць тому +1

    Thank you for creating such informative videos .
    Please make video on system design which includes about architectural patterns.Which pattern should be picked and why . Benefits and tradeoffs.

  • @MrTomer157
    @MrTomer157 14 днів тому

    Thank you so much!

  • @cristobalheiss5349
    @cristobalheiss5349 Місяць тому +1

    quality content, this was very good

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

    Amazing job done here!
    I'm wondering if you can create another session about interview questions related to SOLID principles and OOP principles. I got these questions a few days ago in an interview. Thank you!
    Wishing you all the best!

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

      We will add this to our backlog @Adi! Thanks for the suggestion

  • @gokulkrishh
    @gokulkrishh 13 днів тому +2

    This video was good reason it covers more than frontend. But your title says Frontend System Design but most of the discussion was around backend stuff like load balancer, db, redis etc, which a frontend would never take these decisions. So its kind of mis-leading when you say frontend system design.
    Ideally imo, frontend system design would talk about ui architecture, component decisions, data store, optimisation in frontend etc.

    • @therealseniordev
      @therealseniordev  6 днів тому

      Hey @gokul, we are preparing a part two, that will be focused specifically on the client side system design - stay tunned!

  • @madhanravi4365
    @madhanravi4365 Місяць тому +1

    Need lot more in depth ❤

  • @haniahani5351
    @haniahani5351 Місяць тому +3

    Need more full Stack system design. Particularly for millions users. How we can handle million users on front end and back end. Please first explain it and then do it with code example.

    • @therealseniordev
      @therealseniordev  Місяць тому +2

      yes, we are working on a video like that, stay tuned

    • @StingSting844
      @StingSting844 Місяць тому +1

      It doesn't make sense to ask this question because no one designs for a million users from day one. Everything just evolves and scales

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

      @StingSting844 It’s an interview question, so they are probably going to ask you to design based on a high number of users and requests because the company may already be at that scale.

  • @ankitdawra4308
    @ankitdawra4308 Місяць тому +1

    Great discussion! But I don't get that why it isn't a good case for SSR. Can you please explain?

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

      Hey Ankit, because the feed is very dynamic and SEO is not important for the feed section, SSR does not pay off

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

      You can't render server side because all the fetches happen statefully, during load. You could hydrate skeleton components, however, so your users get fast-er initial load times.

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

    🔍 Find your technical gaps with this Free Technical Assessment: www.theseniordev.com/free-technical-assessment

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

    Question: How is "likes/comments - out of scope" in this context? Where they gona be stored? "Cloud"?

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

      Hey there, we left it out of scope to keep things simple! Given the real-time aspect it is a bit more complex to design

    • @markgoldstein
      @markgoldstein День тому

      If likes/comments were in scope, there'd be a strong case to use a relational database, right?