Tag: Web Development
All the articles with the tag "Web Development".
How To Use rerender in React Testing Library
Updated: at 06:59 AMLearn how to use rerender from React Testing Library to test the effect of prop changes.
The right way to create utility functions in TypeScript
Updated: at 03:55 PMA 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.
Your Guide to Testing React Components
Published: at 09:21 AMMaster React component testing with this guide on Enzyme-RTL conversion, prop testing, hooks, DOM structures, and optimization
Creating a CI/CD Pipeline with Docker and GitHub Actions: A Step-by-Step Guide
Updated: at 12:02 PMLearn to build CI/CD pipelines using Docker and GitHub Actions with this guide for seamless web development, automated testing, and efficient deployment
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.