#reactjs
Read more stories on Hashnode
Articles with this tag
Code splitting is a technique used to optimize the loading performance of web apps by breaking down the bundled JavaScript files into smaller, more...
Learn how to migrate your CRA app over to Vite. ยท I recently migrated a production app within my company from create-react-app (CRA) to Vite, and the...
Learn how to set up ESLint & Prettier in your ViteJS project. ยท I recently migrated from create-react-app (CRA) to ViteJS, and as part of that, I set up...
I recently migrated from create-react-app (CRA) to ViteJS, and as part of that, I switched my test runner from Jest to Vitest. In this article, I go...
Learn why making your tests fail is actually a good idea. ยท Let's face it, most of us developers don't necessarily love writing tests. We sometimes end...
I recently needed to add tests for a <select> element I was developing, and I couldn't find a lot of resources on how to do this with React Testing...