How to Use TANStack Query to share data between Remix loaders by sergiodxa
The blog of sergiodxa
Should you host your Remix app on a serverless provider like Netlify, Vercel, Cloudflare Pages, or AWS Lambda? Or a long-lived server like Fly, Render, Railway, or DigitalOcean? This guide will help you choose the right hosting option for your app.
A Remix action is an endpoint for POST requests, and all forms will submit to the same action. Add a name and value to your submit button to know which form was submitted, and use that to determine which action to take.
The personal blog of Jacob Paris
Use Remix's nested routes with react-transition-group and Tailwind CSS to fade between pages.
Use Remix's Defer feature in combination with an EventStream to stream progress updates to the client.
Server-side rendering breaks when the server is in a different timezone than your browser. Make your Remix server timezone agnostic with a timezone offset cookie.
Save forms automatically with useFetcher instead of useSubmit. Show a loading state while saving.