Daniel Cadeaublog.dcadeau.com·Oct 15, 2024Monorepo in GitpodIn this article, I will walk through a monorepo setup with a React front-end and a Symfony back-end, using Gitpod as the cloud-based development environment provider (same logic for Stackblitz, Github Codespaces and so on). CORS: where the journey be...10 likes·101 readsGitpod
NiKHIL NAIRnncodes.hashnode.dev·Sep 11, 2024Mastering CORS in JavaScript: A Comprehensive Guide for Frontend DevelopersWhen developing web applications, security is paramount, especially when it comes to handling cross-origin requests. Browsers implement several security mechanisms to protect users from potential attacks like Cross-Site Scripting (XSS) and Cross-Site...Preflight Requests
Anuj Kumar Upadhyayanuj1.hashnode.dev·Jul 10, 2024Managing CORS Problems in JavaScript Full-Stack EnvironmentsSolving CORS Issues in a Full-Stack JavaScript Application When building a full-stack JavaScript application, it's common to encounter Cross-Origin Resource Sharing (CORS) issues. This is particularly true when your frontend and backend are served on...2 likesJavaScript
Imafidon Tabithatabsdev.hashnode.dev·Jun 28, 2024Fixing CORS Error: My experience as a backend developerHello there 👋, My name is Tabitha and I'm an aspiring Software Developer, I have basic skills in backend development and frontend development. I recently got accepted into the HNG11 internship and plan to use this wonderful opportunity to better sha...1 likebackend
Riyaz Nabiyullariyaz-blog.hashnode.dev·Jun 21, 2024Understanding Cross-Origin Resource Sharing (CORS)Introduction In the realm of web development, security is paramount. One critical security feature implemented by web browsers is Cross-Origin Resource Sharing (CORS). This mechanism is essential for protecting users and ensuring that web application...44 readsCORS
Meds0ctober.hashnode.dev·Feb 21, 2024Fixing CORS Errors with React Proxy: A Simple SolutionA lot depends on what you use as your development environment, the traditional Create-react-app or the new trend Vite. I prefer Vite, it stands out because it’s remarkably fast and sets up very quickly, which is a big advantage. Now if you’re buildin...30 likes·60 readsCORS
Komal Shevanejs-brains.hashnode.dev·Feb 20, 2024Cross Origin Recourse SharingCORS facilitates the sharing of resources between different origins. Many of us have encountered CORS errors on the client side and may have successfully resolved them. However, let's deep dive into what transpired behind the scenes. Our browsers en...1 likeprefetched
Nishant Tomerdevxnishant.hashnode.dev·Feb 8, 2024Navigating Cross-Origin Resource Sharing (CORS) Errors: A Comprehensive Guide for DevelopersIntroduction: Cross-Origin Resource Sharing (CORS) is a security feature implemented in web browsers to control and restrict resource access across different origins. While essential for web security, CORS errors can be a common stumbling block for d...7 likesCORS ERRORS
Nitin Kalratil.hashnode.dev·Dec 30, 2023Demystifying CORS: Understanding Access-Control-Allow-OriginCross-Origin Resource Sharing (CORS) is a security feature implemented by web browsers to control how web pages in one domain can request and interact with resources from another domain. CORS is crucial for maintaining a secure and controlled web env...217 readsCORS
Surabhi Sumansurabhisuman.in·Dec 18, 2023CORS and Effect: HTTP Headers, Cross-Origin StyleCORS refers to Cross-Origin Resource Sharing. It’s a terminology used in the context of browser requests. Now before we get deeper into CORS, we first need to understand origin and why the need for CORS Origin and same origin policy Origin is the sou...CORS