Goodbye controllers, hello Minimal APIs - Nick Chapsas - NDC London 2023

Поділитися
Вставка
  • Опубліковано 14 тра 2023
  • Minimal APIs are the hottest .NET 6 feature and for good reason. They makes it extremely easy to create high performance and scalable APIs without having to deal with any boilerplate code.
    In this session I will introduce you to the beautiful world of Minimal APIs. I will show you how easy it is to build an API using them, with just a few lines of code, compare it to the "old-fashioned" approach within .NET and explore what that means for the .NET ecosystem and community in general.
    More of Nick Chapsas:
    ‪@nickchapsas‬
    Check out our new channel:
    NDC Clips:
    ‪@ndcclips‬
    Check out more of our featured speakers and talks at
    ndcconferences.com/
    ndclondon.com/
  • Наука та технологія

КОМЕНТАРІ • 52

  • @Flynnor
    @Flynnor 8 місяців тому +4

    Very impressive talk! At the beginning, I was very skeptical, but Nick completely turned me around. I hope to see more from him in the future. Well worth a watch.

  • @velvetsound
    @velvetsound 8 місяців тому +5

    Great video. I liked the comparison to Fast API and Express, which have successfully scaled to huge projects over the last few years. The .NET community could learn a lot from these other huge high performance projects.

  • @BruLLLo
    @BruLLLo Рік тому +5

    I am participating an a microservices project just starting out. I have been annoyed after learning controllers that I have to go away from it so I have been pushing this minimal API to the future abit. After watching this I will recommend the others in my team to have a look aswell. Thank you for a great talk and for the example given.

  • @ilovepandaypoe6056
    @ilovepandaypoe6056 Рік тому +1

    I have implemented this to my actual project and it is insanely beautiful

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

    great presentation, after this talk, I am going to start pushing my higher management on the importance of moving towards minimal APIs.

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

    This makes me appreciate Node/Express even more!

  • @quranthecompanion4528
    @quranthecompanion4528 Рік тому

    I just finished watching a movie. 🙂. Its an amazing episode. duly enjoyed. Thank you.

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

    Nick is awesome! Bravo..

  • @goremukin1
    @goremukin1 11 місяців тому +5

    "I use Arch btw"
    LOL 😂

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

    Thanks learner a lot

  • @tareksalha
    @tareksalha Рік тому +1

    Great presentation. I really like the comparison with Python and JavaScript

  • @Av-fn5wx
    @Av-fn5wx 9 місяців тому

    Im planning to learn C# and .NET. Would I be able to understand this video or do i need C# and .Net proficiency to understand this. I'm primarily a Node & React dev. Thank You

  • @Eirenarch
    @Eirenarch Рік тому +2

    How much "way faster" are your single action controllers that you call "endpoints"?

  • @leakyabstraction
    @leakyabstraction Рік тому +14

    Clean Architecture is surely not a panacea or a silver bullet. And it's easy to overdo, especially since the industry tends to overdo everything. At its core it's just some sane SRP considerations to apply on the higher levels of an application structure, e.g. it's good to have an interface layer (for example Rest API endpoints) well-separated from the application logic, and to create generalized interfaces for infrastructural services to serve as a boundary between external and internal concerns.
    While it's not common to replace DB implementation, it's much more common to replace generic external services like ecommerce APIs, accounting services, etc., and if those bleed deeply into a properly sized business logic or domain, that alone can cause a world of pain.
    IMO domain and application layer separation is usually not important.
    And yes, controllers are pretty trash. 😄 But what's way more trash, and very commonly seen even in this day and age, is a mind-bogglingly horizontal application structure with proper 1990 style tech folders, like models, services, helpers, validation, etc. It develops into a special type of horrible spaghetti code every single time, but many devs still haven't learned the value of screaming architecture, feature folders, and vertical slicing.
    (This last paragraph wasn't directed at the demo app shown btw. Obviously tech folders are fine for demos, since there is usually not enough 'meat' to derive or discriminate proper concepts that would drive the design of the application structure.)

    • @foro1
      @foro1 Рік тому

      ua-cam.com/video/JMw1GmJzF6A/v-deo.html

    • @silop
      @silop 9 місяців тому +1

      Do you have a recommendation of any place where I can study application structure/architecture best practices?

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

    I dont know sometimes I tend to prefer Java way of making things explicit instead of hiding everything behind syntax sugar making it even less readable .

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

    @nickchapsas I really appreciated that well made transformers meme

  • @ranjitgill1974
    @ranjitgill1974 11 місяців тому +2

    Where is the code for it please?

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

    Where can I find the source code to follow the structure ?

  • @yoseffixler6551
    @yoseffixler6551 Рік тому

    That was an informative and well structured lecture.
    But most of all, it was an educational lecture on picking the head up from one's narrow work context, and watching the bigger picture of the community.
    The last sentences were a masterpiece.
    Besides, getting used to a paradigm is considered as a good practice only while keeping the mind open to examine the renewed and updated ones.

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

    As some1 how learned coding for himself on a c64, it was a big struggle to get compilers on pc's. I was a struggle to use all the warez stuff. I felt in love with the linux community and the great work of linus torvald and all the contributers who made linux great. I loved gentoo linux, i loved arch linux later on. Now i have a new job and have to code in c# and i really love it. I love the language, i love how the languages evolves and i think it's time to forgive microsoft for the fight against linux and open source... which is a hard emotional thing for me, because i really hated microsoft balmer/gates for it.

  • @patrickrocchio7775
    @patrickrocchio7775 Рік тому +1

    Where is the source code?

  • @YaroslavMinakov
    @YaroslavMinakov Рік тому +3

    which IDE is he using ?

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

    This is cool for writing something that is literally just an API that only ever returns data and it certainly simplifies the development of those especially for new developers, but this isn't a replacement for MVC and other related patterns. You are not going to write something like an OAuth2 server with this where the same endpoint can sometimes return data, a view, redirect, etc. depending on the flow/client type. There is still routers and controllers, it is just hidden to you just like main in the program.cs, using statements, etc.. Also, DI and services being injected should already be available so you would just be referencing them, so no more memory being used, kind of the entire point of DI.

  • @rolandomedina7140
    @rolandomedina7140 Рік тому +11

    I don't know man, seems like just smaller controllers to me with a different name.

  • @abeare9616
    @abeare9616 Рік тому

    I was in the middle of thinking "hmm that reminds me of NancyFx" and then..

  • @stewiegriffin6503
    @stewiegriffin6503 Рік тому

    meeeh meeeeh

  • @anomalii7720
    @anomalii7720 Рік тому +4

    And still doing the same: CRUD data. Next year something else than minimal API doing....the same.

  • @Zapman2010
    @Zapman2010 Рік тому +1

    On the one hand cool, on the other hand you are quickly lost, the code and the processes are not comprehensible.

  • @eda0076
    @eda0076 Рік тому +12

    Why is he doing a duckface

    • @wolfgang999
      @wolfgang999 Рік тому

      🤣

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

      Unfortunately that’s what happens when you’re really good at C# 😢🦆

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

    No native data validation, dangerous

  • @0x4b55
    @0x4b55 Рік тому +3

    Ok, Minimal APIs is the future instead of MVC Controllers - but the last example uses FastEndpoints which is an alternative to Minimal APIs and MVC Controllers; now what is the point of the NDC talk? MVC Controllers are bad, Minimal-APIs are better but unfortunately not good enough - please don't use the Microsoft stuff but please use FastEndpoints which have a Minimal-APIs like architecture but don't use Minimal-APIs themselves....
    But how bad are MVC controllers really - impressive 30% slower - that's a fraction of what the average software abstraction that software architects seem to invent every year easily consumes. Ok but MVC controllers have violated the single responsibility principle; yes exactly for 10 lines of code that an endpoint requires before going to the dedicated service provided by the DI container.

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

      I also was disappointed, because was waiting him to group minimal API's in files nicely using built-in stuff.

  • @shinobi_313
    @shinobi_313 Рік тому +3

    Is it a joke?)

    • @shinobi_313
      @shinobi_313 Рік тому

      U are talking about simplicity on ‘hello world’ example…

    • @shinobi_313
      @shinobi_313 Рік тому

      The idea of hiding and minimizing boilerplate code from product developer to make him think and implement business logic is great. Think this is a real idea behind this talk

  • @bananasba
    @bananasba Рік тому +8

    So Minimal API is API that can not be used in any decent project without third party library like FastEndpoints. That is worse in some aspects than single method controllers. Certainly a way to go!

    • @kirillxt
      @kirillxt Рік тому +14

      If you are asking that question after watching the video it's certainly not for you.

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

    can wait to retire and quit this miserable field!!!... wish I can switch fields before then!

  • @bananasba
    @bananasba Рік тому +2

    Controllers never share state between actions - false claim.

    • @nickchapsas
      @nickchapsas Рік тому +5

      Didn’t say that. I said that they never share state, so why are they sharing real estate, as in, the controller class

  • @haroldpepete
    @haroldpepete Рік тому +5

    why is the main topic in this video? he talked about a lot of things, you own me 54 min, what a mess this talk

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

    How i loved ruby / sinatra