This repository contains a Node.js/Express backend with a React frontend. It demonstrates the use of CORS middleware to remediate Cross Origin Resource Sharing (CORS) vulnerabilities and Helmet for creating secure HTTP headers.
- Backend: Express.js API with CORS and Helmet middleware
- Frontend: React application that consumes the API
-
Install dependencies:
npm install
-
Start the server:
npm start
For development with auto-reload:
npm run dev
-
The server will run on port 5000 by default.
-
Navigate to the frontend directory:
cd frontend
-
Install dependencies:
npm install
-
Start the development server:
npm start
-
The React app will run on port 3000 by default.
- CORS: The Express app uses the
cors
middleware to control which origins can access the API. - Helmet: The
helmet
middleware can be enabled to add various HTTP headers that improve security.
Copyright (c) IBM Corporation. All rights reserved.
Licensed under the Apache License. See LICENSE.