ENGLISH (2) 썸네일형 리스트형 delimited server의 index.js 파일에서 cors 옵션을 작성하는 부분에 "origin은 클라이언트(리액트) 서버의 주소이며 method 는 오로지 GET, POST, OPTION만 허용해야 합니다." 라는 설명이 있었다. 나는 아래와 같이 methods의 값을 스트링 형식으로 적어주었는데 reference 코드에는 배열이었다. app.use(cors({ origin : "https://localhost:4000", methods : "GET, POST, OPTIONS", credentials: "include", })); 동기분께 여쭤보니 배열로 해야 한다고 했다. 내가 본 공식 문서에는 그냥 스트링 형식이어서 혼란스러웠다. 그 부분을 찾아보다가 새로운 사실과 함께 새로운 단어도 배웠다. Express .. be coined by Authentication 파트에서 cookie에 대해서 배우다가 어원에 대해 궁금증이 생겼다. cookie의 어원을 찾다가 위키에서 다음과 같은 글을 읽었다. COOKIE Origin of the Name The term "cookie" was coined by web-browser programmer Lou Montulli. It was derived from the term "magic cookie", which is a packet of data a program receives and sends back unchanged, used by Unix programmers. (wikipedia) + Cookie is a small bit of information that travels from a .. 이전 1 다음