FeBase

FeBase 와 함께하는 Frontend 하나씩 배워가면 늘어나는 CS지식 오퀘이!

View project on GitHub

FeBase - Frontend Base

프론트 엔드 개발 지식을 위한 기본을 배우는 시간! :white_check_mark:

Season 1 Exam

:file_folder: Table Of Contents

INTERVIEW

게시물 날짜 글쓴이
FE Interview 11 2020-08-12 @dev-owen
FE Interview 9 2020-08-12 @samslow
FE Interview 10 2020-08-12 @snowjang24
FE Interview 10 2020-08-05 @nailerHeum
FE Interview 8 2020-08-05 @nailerHeum
FE Interview 7 2020-08-05 @dev-owen
FE Interview 5 2020-08-05 @samslow
FE Interview 6 2020-08-05 @jinsunee
FE Interview 4 2020-08-05 @snowjang24
FE Interview 3 2020-07-28 @nailerHeum
FE Interview 2 2020-07-28 @samslow
FE Interview 1 2020-07-27 @dev-owen

S2_ROUND1

게시물 날짜 글쓴이
storybook 2020-11-26 @chjjh0
JS 상태관리 도구 개론 2020-11-19 @wooooooood
RxJS R아보기 2020-11-19 @symoon
LazyLoading 2020-11-19 @chjjh0
nextjs_tutorial_ch1 2020-11-17 @dev-owen
차트 라이브러리 2020-11-11 @junCastle

S2_ROUND3

게시물 날짜 글쓴이
필드에서의 웹 바이탈 측정 모범 사례 2020-12-13 @symoon
LCP 2020-12-10 @wooooooood
Core Web Vitals 2020-12-10 @dev-owen
FID 2020-12-10 @chjjh0

JAVASCRIPT

게시물 날짜 글쓴이
디바운스, 쓰로틀링 2020-07-22 @jinsunee
Front to the ES2020 2020-07-15 @snowjang24
Javascript 기초 - 버블 버블 버블 팝! 이벤트 버블링! 2020-07-14 @samslow
0.1 + 0.2 !== 0.3 인 이유 (ieee 754) 2020-07-08 @jinsunee
This keyword, call & apply 2020-07-08 @nailerHeum
Javascript var, let/const and Temporary Dead Zone 2020-07-08 @jinsunee
V8 엔진 2020-07-07 @dayoung
Javascript 스코프 2020-07-02 @jinsunee
Garbage Collector 2020-07-02 @snowjang24
Web 기본부터 Alaboza 2020-07-02 @samslow
호이스팅 2020-06-30 @dayoung
Iterator & Generator 2020-06-26 @nailerHeum
그냥 ES11인가 뭐시깽이 쓰면 되는거 아님? 2020-06-25 @samslow
자바스크립트 동작 원리 2020-06-25 @jinsunee
ES Module에 대해서 2020-06-25 @nailerHeum
Javascript 기초 - JavaScript 개발한다면 JIT은 알아야JIT 2020-06-25 @samslow
Javascript 데이터 타입 2020-06-25 @jinsunee
따라쟁이 셋째 JS가 지키고 싶었던 것 - Prototype 2020-06-19 @samslow
비동기(Asynchronous) 2020-06-19 @snowjang24
실행 컨텍스트와 클로저 (Execution Context & Closure) 2020-06-19 @nailerHeum

WEB

게시물 날짜 글쓴이
브라우저에 데이터 저장하기 2020-07-15 @nailerHeum

S2_ROUND2

게시물 날짜 글쓴이
JS TDD 개론 2020-12-03 @wooooooood
CSS-in-JS 2020-12-03 @dev-owen
Code Splitting 쪼개보기 2020-12-03 @symoon
함수형 프로그래밍과 클래스형 프로그래밍 2020-12-03 @tjdud0123 (엄서영)
CSS 방법론, BEM에 대하여 2020-11-26 @snowjang24
React 렌더링 측정(Lighthouse) 2020-11-26 @junCastle

S2_ROUND4

게시물 | 날짜 | 글쓴이 —|—|— Http-vs-Socket| 2021-03-11 | @wooooooood

HandBook

Contributors :sparkles:

samslow
Hyeonseok Samuel Seo
snowjang24
SoonHoJang
nailerHeum
Seongheum Choi
jinsunee
Jinsun Park
dev-owen
Wonjong Oh

How to

Pull Request 이후

# 최초 1회 실행
git remote add -t [본인깃헙브랜치이름] upstream https://github.com/Febase/FeBase
git remote -v
# 아래와 같이 출력되어야 정상입니다.
origin	https://github.com/[본인깃헙아이디]/FeBase.git (fetch)
origin	https://github.com/[본인깃헙아이디]/FeBase.git (push)
upstream	https://github.com/Febase/FeBase (fetch)
upstream	https://github.com/Febase/FeBase (push)
git fetch upstream [본인깃헙브랜치이름]
git rebase upstream/[본인깃헙브랜치이름]