Also, why did Kent C Dodds leave a while ago? I mean, not the official story, but the actual one? He became a co-founder and left within a year...
I don’t know the exact details of why he left, but I can say that a lot of us were surprised and confused when he joined Remix. The other Remix founders have great reputations everywhere they’ve worked, but Kent has kind of developed into a personality cult over the years. His courses and personal brand have no doubt been very profitable for him, so I’m not too surprised to see him go back toward personal brand build…
Remix web framework aquired by Shopify
171–180 of 209 posts
Re: Remix web framework aquired by Shopify
#172Anyone currently using Remix in a production app? Read through the docs and it seems pretty interesting. Can't really get a sense for how stable it is though. I know from prior use of React Router, the maintainers love the big rewrites between major version numbers.
Mix feeling of this Correlation: React Router -> Remix Redux -> RSC Snowpack -> Astro "This time, we will make it right" kind of feeling.
Edit – I think I found it: RSC is React Server Components. Per React’s December 2020 blog post https://reactjs.org/blog/2020/12/21/data-fetching-with-react... and June 2022 blog post https://reactjs.org/blog/2022/06/15/react-labs-what-we-have-..., the technology is still in development.
Searches like “RSC JavaScript” and “RSC Redux” didn’t turn up anything. I only found the term “React Server Components” in the comment https://news.ycombinator.com/item?id=29994621 while reading discussion of a January 2022 blog post “Remix vs Next.js”.
Re: Remix web framework aquired by Shopify
#173Re: Remix web framework aquired by Shopify
#174Earlier quoted context omitted.
That implies he considered Remix a failure and left. Interesting.
I doubt it. Honestly I suspect he saw more money in building content that he owned 100% based on his personal brand, whereas contributing to a project that he only owned a fraction of wasn’t up his alley.
Re: Remix web framework aquired by Shopify
#175I'll stick to NextJS. Remix seemed fishy from the very start.
To me, Remix seemed like a very lightweight reimagining of what Next excelled at (server side react with nice frontend integration). It was exciting to see how quickly it handled dynamic renders when running from a Cloudflare worker. But now that Next 13 has layouts/server components, I prefer Next.js' approach due to all the other performance work they've done with images, fonts, css, etc. One thing about Remix that…
Re: Remix web framework aquired by Shopify
#176Earlier quoted context omitted.
Wait what? We have frameworks for frameworks now? What?? How did we get there :(
Everyone told me that Javascript ecosystem is maturing and slowing down. Everyone told me to just consider either React or Vue. But that doesn't seem to be the case.
Re: Remix web framework aquired by Shopify
#177I have strange feeling about these nodejs server based and the direction of the web and the chaotic of Big|VC-backed corps playing chess. And that also causes effect on web job market. .. what's your retirement plan?
Software development has always been (in my opinion) an ever changing environment, where you had to adjust your skill set in order to keep up. Sure some technologies change faster than others, and it's not always the right choices being made, and maybe people jump on these new technologies rather quickly, but people innovating, and learning from failures should be a good thing.
Re: Remix web framework aquired by Shopify
#178Also, why did Kent C Dodds leave a while ago? I mean, not the official story, but the actual one? He became a co-founder and left within a year...
Re: Remix web framework aquired by Shopify
#179Earlier quoted context omitted.
React is a framework though. The main differentiator between the two is Inversion of Control. React developers write their code to be called by the React application. You aren't choosing to include React or not (what you would do with a library), your whole frontend application is built within the context of the React environment in which it will run.
> React is a framework though. framework vs library -- how would you define them?
Re: Remix web framework aquired by Shopify
#180Earlier quoted context omitted.
Wait what? We have frameworks for frameworks now? What?? How did we get there :(
React without a framework only gives you a basic UI composition layer and some simple state management and inheritance tools. With a proper framework it becomes vastly better. It's probably a philosophical thing too. You can make your own Frankenstein site with a bunch of a separate libs or you can go with an elegantly configured and single vendor supported bolts included framework.