THIS is the BEST Way to Write HTTP Services in Golang

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

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

  • @MelkeyDev
    @MelkeyDev  5 месяцев назад +8

    Hope you all enjoy the video - make sure to comment + like and subscribe if you havent already and check out the original article as well!

  • @cabanford
    @cabanford 3 месяца назад +9

    Like your channel (interested in learning Go). Found you from the Primeagen...
    Your video cuts remind me of Max Headroom (from 80s MTV) 😂

    • @MelkeyDev
      @MelkeyDev  3 месяца назад +2

      shout out Primeagen+

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

      @@MelkeyDev The Primeagen is the best but you're a close second Melkey!

  • @RayAndrewsDev
    @RayAndrewsDev 5 месяцев назад +4

    Its so nice to see that I'm doing a lot of things the "right" way, but this still has a lot of "OH, that would make things so much easier" patterns.
    Looks like I'm going to be updating my API template ... again :) Thanks

    • @MelkeyDev
      @MelkeyDev  5 месяцев назад

      Hey thank you :)

  • @Cixelsyd32
    @Cixelsyd32 5 месяцев назад +4

    Excellent content as always. Hopefully the RUclips gods start showing you the love your channel deserves.

    • @MelkeyDev
      @MelkeyDev  5 месяцев назад

      Haha - pray to the algo Gods LOL

  • @pbentesio
    @pbentesio 5 месяцев назад +2

    I stumbled into having encode and decode functions because in a project I used protobufs with an optional json fallback. Having all that logic in one place just made sense.

    • @MelkeyDev
      @MelkeyDev  5 месяцев назад

      i love when things just make sense.
      Just gets the BLOOD FLOWING

  • @lcarv20
    @lcarv20 5 месяцев назад +2

    Really cool video, factory for middleware is one thing I have been doing since I learned go.

  • @whiteshadow7810
    @whiteshadow7810 5 месяцев назад +2

    nice video i coming from Javascript world , Thank you for helping keep going

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

      :) no problem. Thank you for the comment

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

    Fantastic article and video covering it!

  • @dikan34
    @dikan34 5 месяцев назад +4

    Best go content on yt ❤

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

      A lot of great people out there make some great Go content but thank you ery much

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

    Nice video man, good to have more content to rely on. Thanks and keep up

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

      Thank you.
      I will always do my best

  • @ninthsun
    @ninthsun 4 месяца назад

    Thanks for introducing awesome post

  • @nikolam-dev
    @nikolam-dev 5 месяцев назад +1

    Nice edition, good job

    • @MelkeyDev
      @MelkeyDev  5 месяцев назад

      Thank you - hope you enjoy

  • @gearboxworks
    @gearboxworks 5 месяцев назад +2

    I really respect Mat Ryer, and even use his moq code generator, but when I read his article I was disheartened to read him advocating for long parameter lists, at least without mentioning the cons for using them vs. structs.
    Simply put, when using long parameter lists you have to break the API of a function to add another dependency which has unfortunate ripple effects in terms of breaking code if 3rd parties are using it, and possibly worse, bloating pull requests often making it much harder and time consuming to review. Theo recently had a video about how larger PRs have been shown to significantly reduce velocity, and google says so too in their eng-practices blog (not posting a URL as RUclips seems to hide my comments when I do.)
    With structs for optional parameters, nothing breaks if you add new properties and code in a backward compatible manner. I really wish Mat and other Gophers would consider the downsides of broken calls and bloated PRs more when they decide to just keep adding parameters to funcs .🤷‍♂️

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

      team structs baby

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

      Same. That was my biggest issue. Long parameter lists are so cumbersome and rigid. Otherwise it seemed like good advice to someone who has only dabbled in http handling.

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

    Thanks for this

    • @MelkeyDev
      @MelkeyDev  5 месяцев назад

      Youre very welcome

  • @qoobes
    @qoobes 3 месяца назад +1

    Another banger

  • @_us.m.an_
    @_us.m.an_ 2 месяца назад

    I suggest read Lets go further book it follows some useful patterns

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

    It reminds me of the Flask boilerplates in Python.

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

    😂😂😂😂😂
    Shoutout to if err != nil had me rolling

  • @internetkite
    @internetkite 5 месяцев назад

    Thank you 🙏

  • @MarcosVMSoares
    @MarcosVMSoares 3 месяца назад +1

    Why not using the plug pattern for middleware like in Phoenix? Maybe because wirhout a reduce its impossible??

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

      Im not sure I follow the comment

  • @ashimov1970
    @ashimov1970 4 месяца назад

    Why Chi? Aren't there Go native capabilities to make REST APIs?

  • @iamwitchergeraltofrivia9670
    @iamwitchergeraltofrivia9670 5 месяцев назад

    Best way not workung enything on steam

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

    Encoding response with generics like "encode[T any](..." is stupid. No need to know type inside the func when passing "any" gives the same result.

    • @MelkeyDev
      @MelkeyDev  5 месяцев назад

      team interface{} baby haha

  • @marius-mihailionte339
    @marius-mihailionte339 4 месяца назад +1

    Do you plan to launch a course or something similar with the code example you shown in the video? Saw the name "goschool" and hope you do something similar like you shown as example, liked very much your course on FrontEnd Masters.
    Thank you.