Really love this new direction from #RemixJS! It’s also interesting seeing this, combined with a similar move with #RedwoodSDK, and the increasing push against #react to a simpler, Web API first experience.
Really love this new direction from #RemixJS! It’s also interesting seeing this, combined with a similar move with #RedwoodSDK, and the increasing push against #react to a simpler, Web API first experience.
Any #RemixJS experts in here?
Any #RemixJS experts in here?
@alessandro Astro has been a good stepping stone for me to #RemixJS
Imo astro has its limitations
#NextUI + #RemixJS has been a deciding factor for me. NextUI makes the feel of a website instantly more appealing. Remix is NextJS without magic, I can then proxy requests to my backend.
I no longer need to spend any time getting drop-downs to work properly, etc..
https://nextui.org/docs/components/dropdown#usage
Collaboration with others is seamless most know or use #react as well.
Remix v2 complete masterclass - Build Full-stack AI apps
Learn Remix from the ground up and build modern full stack, scalable and server rendered React js apps
https://couponfrogg.com/coupons/remix-v2-complete-masterclass/
Some errors are so stupid that you can't tell anyone... so I'll tell you about mine as a backend developer who tries to do some frontend...
Was trying to figure out way too long why the dynamically added component (WYSIWYG Editor in this case) isn't updated properly... It has an add button to add more and a remove button on each to remove a specific one.
But on the page it always looked like it just removes the last component... in console.logs it looked correctly...)
Yeah, don't use the array index as the key
Switched it to the element.id which is a uuid... and surprise it works
This is pretty cool https://nextjs.org/docs/app/building-your-application/data-fetching/forms-and-mutations#redirecting... #RemixJS has reintroduced me to the form way of performing mutations (like was originally intended) i.e sending data from the page to a server.
There's something really nice about declaring the form / inputs (even hidden ones for data that shouldn't be exposed to users) in JSX and then handling post'd form data in the `action` (which I guess would be "Server Actions" in #NextJS).