-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
충남대 FE_김지안_6주차 과제 #95
Open
KimJi-An
wants to merge
26
commits into
kakao-tech-campus-2nd-step2:kimji-an
Choose a base branch
from
KimJi-An:step4
base: kimji-an
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
5676084
docs: 1단계 요구사항 작성
KimJi-An 508e62c
refactor: 회원가입 및 로그인 기능을 API 명세에 맞춰 수정
KimJi-An de1c5fd
fix: 회원가입 성공 시 상태 코드 처리 및 마이 페이지 사용자 이름 표시 수정
KimJi-An 3189990
refactor: 협의된 API 명세서에 따라 목 데이터 및 타입 수정
KimJi-An b7b9390
refactor: 위시리스트 API 통합 및 목 데이터를 API 명세에 맞게 수정
KimJi-An 5974a9f
fix: 위시리스트에서 상품이 삭제되지 않는 문제 해결
KimJi-An 3f916d9
refactor: 위시리스트 추가 및 삭제 기능 개선 및 불필요한 코드 삭제
KimJi-An ddd4c50
refactor: 협의된 상품 API 명세서에 따라 목 데이터 및 타입 수정
KimJi-An 3f745cc
feat: API 선택하는 UI 추가
KimJi-An 49ef6ee
feat: 백엔드 API 연결 준비
KimJi-An e4c3d5b
refactor: API 명세 수정에 따른 불필요한 코드 삭제
KimJi-An 5df5fd2
refactor: MSW로 동작하도록 수정
KimJi-An 64d37de
style: 코드 포맷팅 적용
KimJi-An bc4cfd8
feat: 백엔드 API 연결
KimJi-An 2a3d42c
fix: 토큰이 object 타입으로 전달되는 문제 해결
KimJi-An 1d7a35f
docs: 2단계 요구사항 작성
KimJi-An 0f33594
chore: gh-pages 설치
KimJi-An d5c4692
docs: 3단계 요구사항 작성
KimJi-An 4ca6ece
feat: 포인트 조회 기능 추가
KimJi-An 3485f5b
style: 코드 포맷팅 적용
KimJi-An 39f6b07
docs: 4단계 질문에 대한 답변 작성
KimJi-An d594625
refactor: 불필요한 코드 제거
KimJi-An 4ba644a
refactor: MSW 핸들러에 타입 정의 추가
KimJi-An 55d7e6e
refactor: 로그아웃 시 세션 스토리지에서 포인트 데이터 제거
KimJi-An d4b6a28
refactor: 위시리스트 API 호출 함수 axios로 변경
KimJi-An 20b78c6
refactor: Header에서 API 타겟 주소 변경 시 instance의 기본 baseURL 변경하도록 수정
KimJi-An File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,38 @@ | ||
# react-deploy | ||
# react-deploy | ||
FE 카카오 선물하기 6주차 과제: 배포 & 협업 | ||
### 🌱 1단계 - API 명세 협의 & 반영 | ||
작성한 API 문서를 기반으로 팀 내에서 지금까지 만든 API를 검토하고 통일하여 변경 사항을 반영 | ||
- 팀 내에서 일관된 기준을 정하여 API 명세를 결정 | ||
- 때로는 클라이언트의 편의를 위해 API 명세를 결정하는 것이 좋음 | ||
<br/><br/> | ||
- [X] 팀 내에 배포될 API가 여러 개일 경우 상단 내비게이션 바에서 선택 가능 | ||
- 프론트엔드의 경우 사용자가 팀 내 여러 서버 중 하나를 선택하여 서비스를 이용 | ||
- [X] 팀 내 백엔드 엔지니어의 이름을 넣고, 이름을 선택하면 해당 엔지니어의 API로 API 통신을 하도록 구현 | ||
- [X] 기본 선택은 제일 첫 번째 이름 | ||
- [X] 백엔드에서 협의된 API를 배포하기 전까지는 MSW로 동작 가능하도록 구현 | ||
|
||
### 🌿 2단계 - 배포하기 | ||
- github pages를 사용하여 배포 | ||
|
||
### 🪴 3단계 - 포인트 | ||
- 포인트 기능 구현 | ||
- API 명세는 팀과 협의하여 결정하고 구현<br><br> | ||
|
||
- **포인트 조회**<br> | ||
해당하는 멤버의 포인트를 리턴<br> | ||
**URL** : /api/member/point<br> | ||
**Request** : Header: Authorization: Bearer {token}<br> | ||
**Response** : 200 OK { "point": "number" }<br> | ||
|
||
### 🌳 4단계 - 질문에 대한 답변 | ||
**질문 1.** SPA 페이지를 정적 배포를 하려고 할 때 Vercel을 사용하지 않고 한다면 어떻게 할 수 있을까요? | ||
|
||
> 리포지토리에 SPA 페이지를 업로드하고 GitHub Pages를 설정하는 방법이나, AWS S3에 프로젝트를 올리고 CloudFront을 CDN으로 사용하는 방법을 사용해 배포할 수 있습니다. | ||
|
||
**질문 2.** CSRF나 XSS 공격을 막는 방법은 무엇일까요? | ||
|
||
> CSRF는 서버에서 생성한 토큰을 사용해 요청을 검증하거나, 쿠키에 SameSite 속성을 설정해 동일 출처에서만 쿠키가 전송되도록 하여 방어할 수 있습니다. XSS는 CSP(콘텐츠 보안 정책)을 설정하거나, HTML 인코딩을 사용하여 <, >와 같은 문자를 안전한 형식으로 변환하는 등 사용자 데이터를 적절히 인코딩하여 방어할 수 있습니다. | ||
|
||
**질문 3.** 브라우저 렌더링 원리에 대해 설명해주세요. | ||
|
||
> 브라우저는 서버로부터 HTML 파일을 받아 파싱하여 DOM 트리를 생성하고, CSS 파일을 파싱하여 CSSOM 트리가 생성합니다. DOM 트리와 CSSOM 트리가 결합하여 렌더 트리가 형성됩니다. 이후 레이아웃과 페인팅 과정을 거치면서 각 요소의 위치와 크기가 정확한 좌표로 변환되고, 배경색, 이미지 등이 화면에 그려집니다. 여러 레이어가 겹쳐지는 경우 브라우저는 각 레이어를 별도로 페인팅하고 최종적으로 이를 합성하여 최종 이미지를 생성하여 화면에 표시합니다. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
배포하신 github pages 링크 첨부해주시겠어요? github pages에서 SPA 지원은 기본적으로 하지 않기에 의도적으로 몇 가지 설정을 해줘야할텐데 그게 코드로 보이진 않은데 한번 내용 공유해주시면 좋겠습니다.