#web-development
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...
One of the less exciting things about being a Frontend Developer is having to handle error, empty and loading states. It may not be the most fun thing...
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...
Learn some tips and best practices to give your E2E Playwright tests a boost. ยท I've been using Playwright for a couple of months now, and though I'm...
One problem we often face as frontend developers is dealing with CORS when making API requests. What is CORS? CORS (Cross-Origin Resource Sharing) is...