A modular approach to building large-scale apps with Vue by Kunal Varma - Kunal Varma

Sdílet
Vložit
  • čas přidán 1. 09. 2019
  • Introduction
    Anatomy of a typical Vue app
    To Type(script) or not to (Type)script
    An ode to Modularity
    Foundation will set you free
    Injection is good
    The things we do for Async
    O Convention, where art thou
    It only gets bigger
    Patterns to the rescue
    To err is Human
    End
    Kunal is an early Vue adopter (when v-for was v-repeat) and an ardent evangelist of Vue. He is notorious for his dark humor, and pulling pranks on his peers. Amongst other things, he is the co-founder and CTO of ClearGlass Analytics.
  • Věda a technologie

Komentáře • 27

  • @edmartian
    @edmartian Před 3 lety +5

    This is literally gold for me right now. Thank you very much.

  • @abiekebede3161
    @abiekebede3161 Před 4 lety +19

    This is probably the only video that explains Vue modular architecture. It would have been great if it had git repo or code samples. Please make one

    • @marinakaryukova6231
      @marinakaryukova6231 Před rokem

      Now we have another one: czcams.com/video/iuyzO2QkY7A/video.html

    • @kaibe5241
      @kaibe5241 Před rokem +1

      Unfortunately it doesn't go far enough. You can go way, way further in modularing your vue apps by having them as separate apps completely.

  • @hocahaenyi745
    @hocahaenyi745 Před 4 lety +2

    Most direct, and practical session on modular architecture with vue

  • @pratikrane149
    @pratikrane149 Před 3 lety +4

    This is the type of content I pay my internet bill for. The whole talk was insightful, the presentation hooked me till the end. Thank you for sharing such valuable information, Kunal. 🙌

  • @manueldiera6781
    @manueldiera6781 Před 3 lety +2

    Great material, big fan of this pattern abd only recently started adding a wrapper component for each module.
    It just makes sense. Thanks for sharing.

  • @rajikkali2381
    @rajikkali2381 Před 3 lety +1

    This only works if your backend developer understands what you are trying to do, or if you're using GraphQL. Otherwise, they'll make an API that only calls what is specifically needed on those pages as they reference design files. This is all fun and good, but not necessary feasible in many companies / work structures.

  • @abiodunolunu192
    @abiodunolunu192 Před 3 lety

    Such good talk and practical too. 👍

  • @fedebrunfman
    @fedebrunfman Před 3 lety

    Awesome, thanks man

  • @philipepics
    @philipepics Před 2 lety +1

    great approach 👏👏👏

  • @honza139706
    @honza139706 Před 4 lety

    Very good !

  • @andresinostrozavalenzuela3588

    Such a good video mate, it was so useful to decide what kind of architecture I'm gonna use, do you have a repo as example with code?

  • @CarlosAlberto-os6eb
    @CarlosAlberto-os6eb Před 2 lety +1

    What if I need some component from another module?

  • @playbookapp3231
    @playbookapp3231 Před 3 lety +1

    Could you share the git codebase

  • @chcylabrab
    @chcylabrab Před 2 lety

    please provide a skeleton of app using modular approach if possible

  • @kwangee
    @kwangee Před 3 lety

    Is the demo source code available publicly? what is the git repo URL?

  • @skngetich
    @skngetich Před 2 lety +1

    dear reader, I am looking for vue architecture videos that you have found helpful such as this if have stumbled upon one please tag me in the comment or reply to this comment with the link

    • @marinakaryukova6231
      @marinakaryukova6231 Před rokem

      Here you are: czcams.com/video/iuyzO2QkY7A/video.html

    • @skngetich
      @skngetich Před rokem

      @@marinakaryukova6231 Thank you very much

  • @zeusjean
    @zeusjean Před 3 lety +2

    subtitles please :)

  • @kelwong116
    @kelwong116 Před 2 lety

    Anglur way

  • @animatedzombie64
    @animatedzombie64 Před 3 lety +2

    not bad not good

  • @rajikkali2381
    @rajikkali2381 Před 3 lety

    const phrase = 'Only and only if'
    phrase.slice(5)
    const correctPhrase = 'if ' + phrase
    console.log('result ' + correctPhrase)
    result: 'If and only if'