This is that kind of episode which you need to listen to more than once
@StingSting8445 күн бұрын
It's unbelievable how these guys consistently post about exactly what I need at work or what I'm interested in. I'm making a microfrontend architecture at work using module federation and here is a great interview! But to be honest, he doesn't dumb it down enough for the rest of us.
@WesBos5 күн бұрын
👀 we know
@isuperman1113nКүн бұрын
You can use astro alongside module federation as the host for your micro frontends
@jeremytenjo5 күн бұрын
Zack is at the top of the app development food chain. Great pod!
@koen57775 күн бұрын
Awesome to see Zack on my favorite podcast! 🙌
@tom.watkins5 күн бұрын
Awesome I suggested you get Zack on only a few weeks ago and here he is 😂 nice!
@harisonfekadu5 күн бұрын
I wish I understood what he is saying.
@MrHopp245 күн бұрын
Dynamic linking at runtime instead of static building -> deployment. I think…
@hello_world_1045 күн бұрын
Ya literally not one thing was English. I think this guys target audience is one person, Wesbos
@zackjackson96745 күн бұрын
Dynamically import parts from other builds. And how do you make that stable? Like npm package publishing and installation, but without needing to run `npm install` each time a consuming app needs to update a package. That's a similar analogy.
@RyanForT3hWin4 күн бұрын
It’s a good ego check for me to hear real developers talk about their work.
@jameswilliams71834 күн бұрын
I think the hosts also do tbh
@timfish5 күн бұрын
The best quote is "it solves a problem I hope I never have" 😆
@zackjackson96745 күн бұрын
Facts 😂 Kent is a legend
@kissu_io5 күн бұрын
Love how this goes to the exact opposite of DHH's no build approach. 👌🏻
@kamikaz1k4 күн бұрын
Great episode. Would be cool if he live demo'd a few of the things he mentioned.
@brucej94513 күн бұрын
It would be great to have CJ demonstrate federation in Vite along with some explanation of a few key scenarios.
@owennicol835 күн бұрын
27:06 How does module federation compare to Edge Side Includes (ESI)? We use ESI to share code, but it’s more than just JS modules, it’s discreet web apps like a whole header/footer. Is MF always going to be just JS? How do we share CSS/HTML with this approach?
@jameswilliams71834 күн бұрын
There has to be a better way than this. One that A: Is less fragile and B: Less convoluted. This whole video reminded me of this sketch: kzbin.info/www/bejne/r2myn6KugNSnhrM. Although to be honest I understood basically nothing.
@thenglong5 күн бұрын
masterpiece
@deatho0ne5875 күн бұрын
At a fortune 500. The reason we did it was due to QA thinking they had to test every single piece of our APP. So instead of taking one day to test, they said they wanted three weeks plus to test everything. Even though DEVs would only take 2 hours (dev time + deploy time) to change a function, QA would still take three times. To be fair I thought it was a bit excessive. The issue with this is they would find things in stuff not touched in a bit. Meaning we would go to the last version of QA that had not been deployed in about a month and see the issues QA was bringing up was still there. Now to be fair a lot of the problems were issues but it was issues they were not catching the first time.
@simonhartley91585 күн бұрын
Where I worked we'd create new tickets for these additional finds and then they'd just sit in the backlog never to be addressed.
@StingSting8445 күн бұрын
This is an organisational issue. Principal engineers are to blame for letting this culture set in. Push for automation and atomic deloys
@deatho0ne5875 күн бұрын
@simonhartley9158 again they were issues and generally easy to solve. So we normally put the Jr devs on it since they were hard to replicate most of the time, which is why they were not found the first time
@simonhartley91585 күн бұрын
@StingSting844 What principal engineer? The customer prioritised what was worked on and there was no QA capacity for extra. The automation was a mess handed off between various different QAs who never got it running clean.
@deatho0ne5875 күн бұрын
@StingSting844 even though I agree in some context. I can not say QA testers are bad overall, it was really just a few that wanted to do end to end testing every time. If nothing else it is nice to learn how to set-up a MFE project with multiple repo's, since I can now have more than just a demo of it under my belt.
@ShivamMishra-mn6cs3 күн бұрын
i was not able to find think he mention in last "chatgpt meets e2e testing"
@v1r475 күн бұрын
Love the smoke :D
@taufiqdev4 күн бұрын
:O interested on how Lynx will be doing their styling. Similar to rn’s stylesheet or tailwind rather?
@ngideo5 күн бұрын
3:11 Somebody once said (I think it was Gergely Orosz) its an inside joke in the industry that every company has their own "ReactNative". Wild to see it might be true
@drumforhim5 күн бұрын
11:25 been there, done that!!! 😂
@JLarky5 күн бұрын
16:24 "there's no backend server" I figured
@phii7u5 күн бұрын
At 20:30 my brain left. I don’t know any of the things he just mentioned
@MrJfergs5 күн бұрын
What is Hermes? This is very convoluted it seems like only .5 % of people would need this level of complexity though.
@zackjackson96745 күн бұрын
Hermes is the JS engine inside React Native. We wrote the Lynx engine due to business KPIs. Regarding federation, we have seen that the majority of Fortune 500 companies need it, compared to the alternative of npm packages. At runtime, distribution was an order of magnitude less complex at scale. It also increased product output by an average of 300%. Federation has been key to the companies' success, as they can build and ship apps faster than most others. The problem is that, at scale, there are few solutions. If you don't have scale issues, then you probably don't need it.
@charbelsarkis35672 күн бұрын
is he holding an iqos? 31:10
@ob349153 күн бұрын
I am confused
@griffadev5 күн бұрын
I'd just quit
@_parassolanki17 сағат бұрын
This kind of things gives me imposter syndrome
@dovh495 күн бұрын
It seems like this would be simpler with HTMX, Web Components, and eventing to interact with each other. Also, any packages you're bringing in it would be easier to make sure they are all brought in with version numbers attached. This seems really complex. But I've never needed anything quite this complex. So, I could be completely wrong.
@zackjackson96745 күн бұрын
It's pretty simple. The mechanics under the hood are complex. HTMX and WC didn't work for us. Federation works in backend and native apps, too. We needed a universal solution for code sharing and distribution.
@zackjackson96745 күн бұрын
Eventing also is very limiting. Most users need to share complex memory references. Not strings. Like send a component into another module, or share state. Serialization based communication is often too restrictive for apps that need good performance. Also eventing usually is over global bus. Easy to make collisions
@seannewell3973 күн бұрын
@@zackjackson9674 sharing state seems like a mess to me; do you already have a blog / interview / example of how to decide when it is worth the organizational connection to share state? The hard thing I'm going to face soon is that it is trivial to do this in our system, just make an API on top of a zustand store, for example (can be even simpler imo), but then some unknown number of subscribers depend on your state in ways you cannot foresee. But also, if you just don't allow it in the FE, then some tangled mess of data interactions likely happens in the BE. We find it's usually worth asking penetrating questions, because sometimes the product and domain architecture itself can be redrawn to be clearer with less connections.
@dovh492 күн бұрын
@@zackjackson9674 Thanks for the replies. Yes, it definitely seems complex and a problem I hope I never have 🙂.