Cathal Mac Donnacha
Tech with Cathal ๐Ÿš€

Tech with Cathal ๐Ÿš€

Follow
Follow
homebadges
Tag

React

#reactjs

More content

Read more stories on Hashnode


Articles with this tag

Route-based code splitting with React

Aug 4, 20234 min read

Code splitting is a technique used to optimize the loading performance of web apps by breaking down the bundled JavaScript files into smaller, more...

Route-based code splitting with React

Migrating from Create React App (CRA) to Vite

Aug 22, 20227 min read

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...

Migrating from Create React App (CRA) to Vite

Setting up ESLint & Prettier in ViteJS

Aug 11, 20224 min read

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...

Setting up ESLint & Prettier in ViteJS

Migrating from Jest to Vitest

May 25, 20224 min read

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...

Migrating from Jest to Vitest

Why you should make your tests fail

Dec 2, 20213 min read

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...

Why you should make your tests fail

How to test a select element with React Testing Library

Oct 6, 20213 min read

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...

How to test a select element with React Testing Library