Tag: Remix
All the articles with the tag "Remix".
A Brief History of Web Development
Published: at 11:16 AMTaking a moment to appreciate where web development started for me and how amazing it is right now.
The Ultimate Full Stack Framework for 2024: Remix
Updated: at 06:14 AMRemix is a full-stack framework with seamless backend-frontend integration, fewer states, and web standards emphasis
How to clear form after submit in Remix
Updated: at 06:14 AMOptimize Remix form clearing with useActionData hook, HTMLFormElement's reset, and React's useRef, minimizing client-side logic
How to handle multiple form actions in Remix
Updated: at 06:13 AMAdd name="intent" and value="actionName" to the button that submits the form. In the action, use formData.get("intent") to learn which button was clicked.