Shohanur Rahmansyestemdesigns.hashnode.dev·Dec 11, 2024How to Fix CORS Issues in Spring Gateway SecurityCross-Origin Resource Sharing (CORS) is a critical aspect of modern web applications, especially when your frontend and backend are hosted on different origins. In this blog post, we’ll explore how to configure CORS in a Spring Gateway with security ...CORS
ABHINANDHAN Sthelazydeveloperwrites.hashnode.dev·Nov 29, 2024serverless uploading to AWS S3Uploading large files (up to 5TB) efficiently and securely from a React application to an AWS S3 bucket is a common use case. In this blog, I'll walk you through implementing this solution using pre-signed URLs, with AWS Lambda handling backend logic...11 likes·32 readsAWS
Nicholas Diamondnicholasdiamond.hashnode.dev·Nov 16, 2024Fixing CORS Issues in Node.js APIsWhen building APIs with Node.js, one of the most common issues you might encounter is Cross-Origin Resource Sharing (CORS) errors. These errors typically occur when your backend (Node.js API) is on a different domain or port from your frontend, and y...CORS
Jahid Hasan Shantonotes.jahidhasan.dev·Nov 13, 2024How to setup a backend project with Node.js, Express, and CORSIntroduction Welcome to Your Complete Guide for Building a Server-Side Environment with Node.js, Express, and CORS This guide walks you through the foundational steps of setting up a server-side environment using Node.js and Express to create efficie...Node.js
Shital Mainaliwww.blogs.shitalmainali.com.np·Nov 5, 2024Fixing "Blocked by CORS Policy" Errors in Vue.js and Laravel: A Practical GuideHave you ever run into the dreaded “CORS Policy” error when connecting your Vue.js frontend with a Laravel backend? If you’re seeing messages like: “The request client is not a secure context and the resource is in a more-private address space…” …y...Vue.js
Anish Agrawalanish29801.hashnode.dev·Oct 21, 2024CORS and How to Resolve ItCross-Origin Resource Sharing (CORS) is a critical concept in web development, especially when building applications that involve interaction between the front-end and back-end. If you’re working with the MERN stack (MongoDB, Express, React, Node.js)...js
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·99 readsGitpod
Nile Bitsnilebits.hashnode.dev·Oct 14, 2024How To Build Secure Django Apps By Using Custom MiddlewareIn today's digital world, when data breaches and cyber threats are more common than ever, developing safe online apps is essential. Django is a well-known and powerful web framework with integrated security measures. However, you might need to add mo...32 readsDjango
Harsh Kumar Raicodebyharsh.hashnode.dev·Oct 2, 2024🚀 Mastering Web Development & DevOps: Key Concepts and Lessons LearnedAs a web developer venturing into the world of DevOps, I’ve spent the last few weeks learning and experimenting with a wide range of tools and techniques that form the backbone of modern web applications. In this blog, I’ll share my key takeaways fro...Web Development
Uttam Mahatauttammahata.hashnode.dev·Sep 29, 2024How to Connect Angular with Spring Boot for RESTful APIsWhen building modern web applications, a common approach is to use Angular as the front-end framework and Spring Boot for the backend. Angular helps you create a dynamic user interface, while Spring Boot simplifies building robust and scalable RESTfu...Springboot