I tried ranking Node.js Design Patterns: Builder, Observer, Command, Prototype

Поділитися
Вставка
  • Опубліковано 2 лют 2024
  • Let's rank and learn design patterns like observer, prototype, builder & command with Node.js examples and potential use cases of those design patterns.
    ======⚡⚡⚡======
    Consider becoming a member of the channel by joining me ❤️
    / @softwaredeveloperdiaries
    ☕ Buy me a coffee: www.buymeacoffee.com/software...
    🙌 Become my Patreon and get exclusive perks: / softdevdiaries
    💼 Follow me on LinkedIn and drop me a message if you'd like: / gadirovgs
    💻 Also, let's connect on GitHub: github.com/gusgad
    📚 Resources:
    Original article of Fernando Doglio with code snippets: blog.logrocket.com/guide-node...
    And don't forget to subscribe for more videos like this 😊
    #nodejs #designpatterns
  • Наука та технологія

КОМЕНТАРІ • 16

  • @kaioneal6160
    @kaioneal6160 4 місяці тому +3

    The Builder / strategy pattern has to be one of the most powerful patterns every

  • @qazyhn94
    @qazyhn94 4 місяці тому

    hyped for next thanks!

  • @mahmoud-khaled-abo-elmagd
    @mahmoud-khaled-abo-elmagd 3 місяці тому

    awsome video
    waiting for the next one

  • @abdulazeez.98
    @abdulazeez.98 4 місяці тому

    Awesome video
    Waiting for part 2 👍

  • @programmingholic
    @programmingholic 4 місяці тому

    Thanks for sharing, Keep creating..

  • @AnshuKumari-uo9se
    @AnshuKumari-uo9se 4 місяці тому +1

    Lovely content 😍💖 I like your channel because you post very practical things man, like this video or adv Node.js and React playlist... these kind of content i hardly find on youtube, pls keep creating man 🙌

  • @kaioneal6160
    @kaioneal6160 4 місяці тому

    The builder / strategy pattern has to be one of the most powerful patterns in existence
    Life changes for those who have never used it before

  • @Brad_Script
    @Brad_Script 3 місяці тому

    All classes in nodejs that have an "on" method are actually subclasses of EventEmitter, this includes servers and streams.

  • @duneode
    @duneode 4 місяці тому

    Hey, you should disable the noise cancelling on your mic. It sounds pretty hacky/processed for such a nice looking mic.

  • @Fullflexno
    @Fullflexno 4 місяці тому

    Cool

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

    ❤❤❤

  • @alexvershinin8759
    @alexvershinin8759 4 місяці тому

    Hi, I'm a bit surprised that you used the Builder pattern in the JS code so extensively. Why not simply pass an object to the class constructor? When using TypeScript, mark the needed fields as optional, add the ?? operator with the default value, and we won't need all this boilerplate code with `setSomething` methods.