Under-the-hood of web bundlers (e.g. Webpack)

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ย. 2024
  • Web bundlers such as Webpack are typically a black-box for developers. Here we build our own compiler and examine how it works internally.
    Full blog post on it can be found here: craigtaub.dev/...

ความคิดเห็น • 17

  • @saravanan-subramanian
    @saravanan-subramanian 3 ปีที่แล้ว +1

    Thank you so much for this remarkable series of videos, Craig. I hope you are able to keep going. Your channel deserves even more subscribers and views. A huge appreciation again for all the knowledge you are passing to others through these videos!

    • @JavaScriptunderthehoodof
      @JavaScriptunderthehoodof  3 ปีที่แล้ว +2

      Thanks so much for your comment, means alot to me to hear.
      Yes I have more videos and blog posts planned. Docker is going well.
      If you ever feel it's right to mention my channel on any platform please feel free :)

  • @1981ilyha
    @1981ilyha 2 ปีที่แล้ว +1

    Thank you very much! Amazing and very clear material.

  • @Sam-sv9oi
    @Sam-sv9oi 4 ปีที่แล้ว +2

    Thanks a lot. You have cleared some of the doubts I had about webpack. Appreciate this informative upload. Keep uploading. Subbed

    • @JavaScriptunderthehoodof
      @JavaScriptunderthehoodof  4 ปีที่แล้ว +1

      Thanks so much Sam, will do :). Pls feel free on any of the vids to ask questions if you have.

  • @easton_wang
    @easton_wang หลายเดือนก่อน

    Awesome video!

  • @nagarajapalla
    @nagarajapalla 2 ปีที่แล้ว

    very good session. appreciate your efforts

    • @JavaScriptunderthehoodof
      @JavaScriptunderthehoodof  2 ปีที่แล้ว

      Thanks so much, really appreciate that.
      Please let me know if there are any subjects that you think would be interesting.
      Thanks

  • @jofla
    @jofla 3 ปีที่แล้ว +1

    Outstanding work!

  • @7obudantkale477
    @7obudantkale477 2 ปีที่แล้ว +1

    Can you create a playlist of all the under-the-hood videos. I would like to save that.
    Fantastic job buddy!! :) :)

  • @GauravSingh-st5sd
    @GauravSingh-st5sd 4 ปีที่แล้ว +1

    Subscribed.

  • @DaniloSouzaMoraes
    @DaniloSouzaMoraes ปีที่แล้ว

    At what stage does webpack replace require/import statements with _ourRequire?

  • @fb_a
    @fb_a 4 ปีที่แล้ว +1

    If we have same file imported in multiple other files, will it include the file multiple times in bundle
    or
    It Just includes file once and makes file available to all the other files that are importing?

    • @JavaScriptunderthehoodof
      @JavaScriptunderthehoodof  4 ปีที่แล้ว

      Yes it will include the file once in the bundle (e.g under index 4), and import that file everywhere (e.g. const myFile = require(4)).
      I hope that's makes sense

    • @fb_a
      @fb_a 4 ปีที่แล้ว +1

      @@JavaScriptunderthehoodof thanks!