-
EC2, S3 and CORSJavascript/Node.js and Express 2021. 7. 15. 17:40
const cors = require("cors"); //모든 클라이언트에게 열어줄 경우 app.use( cors({ origin: '*' }) ); //네이버라는 클라이언트에게만 열어줄 경우 app.use( cors({ origin: 'http://naver.com' }) );
서버와 클라이언트가 같은 Repository에서 배포가 된것이 아닌
다른 Repository에서 다른 url값으로 배포된 경우
Client가 Server에게 요청을 해야하는데
만약 Server가 인증되지 않은 다양한 Client들에게서 들어오는 모든 요청을 받아 들여 응답을 하게 된다면
우리의 서비스는 속수무책으로 모든 정보가 다 털려버리고 말것이다
그래서 특정 Client에게만 대답해주라고 설정을 해주는데
CORS로 설정이 가능하다
'Javascript > Node.js and Express' 카테고리의 다른 글
Login, Token(JWT) and Authentication (0) 2021.07.15 imageUpload and Multer(Javascript, Node.js) (0) 2021.07.15 Node.JS, Express and Javascript (0) 2021.07.15 Sequelize and SQL (0) 2021.07.15 MongoDB, Mongoose and NoSQL (0) 2021.07.15