🇰🇷 Learn RxJS
  • 시작하기
  • RxJS 배워보기
    • RxJS 개념
      • RxJS 입문
      • map, pluck, mapTo를 이용해 stream 변형하기
      • 시간 기반의 operator 비교
    • Operator(연산자)
      • Combination
        • combineAll
        • combineLatest
        • concat
        • concatAll
        • endWith
        • forkJoin
        • merge
        • mergeAll
        • pairwise
        • race
        • startWith
        • withLatestFrom
        • zip
      • Conditional
        • defaultIfEmpty
        • every
        • iif
        • sequenceEqual
      • Creation
        • ajax
        • create
        • defer
        • empty
        • from
        • fromEvent
        • generate
        • interval
        • of
        • range
        • throw
        • timer
      • Error Handling
        • catch / catchError
        • retry
        • retryWhen
      • Multicasting
        • publish
        • multicast
        • share
        • shareReplay
      • Filtering
        • audit
        • auditTime
        • debounce
        • debounceTime
        • distinct
        • distinctUntilChanged
        • distinctUntilKeyChanged
        • filter
        • find
        • first
        • ignoreElements
        • last
        • sample
        • single
        • skip
        • skipUntil
        • skipWhile
        • take
        • takeLast
        • takeUntil
        • takeWhile
        • throttle
        • throttleTime
      • Transformation
        • buffer
        • bufferCount
        • bufferTime
        • bufferToggle
        • bufferWhen
        • concatMap
        • concatMapTo
        • exhaustMap
        • expand
        • groupBy
        • map
        • mapTo
        • mergeMap / flatMap
        • mergeScan
        • partition
        • pluck
        • reduce
        • scan
        • switchMap
        • switchMapTo
        • toArray
        • window
        • windowCount
        • windowTime
        • windowToggle
        • windowWhen
      • Utility
        • tap / do
        • delay
        • delayWhen
        • dematerialize
        • finalize / finally
        • let
        • repeat
        • timeInterval
        • timeout
        • timeoutWith
        • toPromise
      • 전체 목록
    • Subjects
      • AsyncSubject
      • BehaviorSubject
      • ReplaySubject
      • Subject
    • 레시피
      • 영어 타자 연습 게임
      • Battleship 게임
      • 버블 게임
      • 카레이싱 게임
      • 점을 잡아라!
      • 클릭좌 게임
      • 날아라 새 게임
      • 게임 루프
      • 가로 스크롤 표시 바
      • HTTP 폴링
      • 잠금화면
      • 매트릭스 디지털 비 효과
      • 기억력 게임
      • 지뢰 찾기
      • 점프 게임
      • Progress 바
      • 저장 표시
      • 똑똑한 카운터
      • 스톱워치
      • 스페이스 인베이더
      • 새로고침하려면 스와이프하세요
      • 2인용 탱크 게임
      • 테트리스
      • 미리 입력
      • 이미지 덮기 게임
Powered by GitBook
On this page
  • Contents (In Alphabetical Order)
  • Additional Resources
Edit on GitHub
  1. RxJS 배워보기
  2. Operator(연산자)

전체 목록

A complete list of RxJS operators with clear explanations, relevant resources, and executable examples.

Prefer a split by operator type?

Contents (In Alphabetical Order)

  • ajax ⭐

  • audit

  • auditTime

  • buffer

  • bufferCount

  • bufferTime ⭐

  • bufferToggle

  • bufferWhen

  • catch / catchError ⭐

  • combineAll

  • combineLatest ⭐

  • concat ⭐

  • concatAll

  • concatMap ⭐

  • concatMapTo

  • create

  • debounce

  • debounceTime ⭐

  • defaultIfEmpty

  • defer

  • delay

  • delayWhen

  • distinct

  • distinctUntilChanged ⭐

  • distinctUntilKeyChanged

  • endWith

  • tap / do ⭐

  • empty

  • every

  • exhaustMap

  • expand

  • filter ⭐

  • finalize / finally

  • find

  • first

  • forkJoin

  • from ⭐

  • fromEvent

  • generate

  • groupBy

  • iif

  • ignoreElements

  • interval

  • last

  • let

  • map ⭐

  • mapTo

  • merge ⭐

  • mergeAll

  • mergeMap / flatMap ⭐

  • mergeScan

  • multicast

  • of ⭐

  • partition

  • pluck

  • publish

  • race

  • range

  • repeat

  • repeatWhen

  • retry

  • retryWhen

  • sample

  • scan ⭐

  • sequenceequal

  • share ⭐

  • shareReplay ⭐

  • single

  • skip

  • skipUntil

  • skipWhile

  • startWith ⭐

  • switchMap ⭐

  • switchMapTo

  • take ⭐

  • takeLast

  • takeUntil ⭐

  • takeWhile

  • throttle

  • throttleTime

  • throw

  • timeInterval

  • timeout

  • timeoutWith

  • timer

  • toArray

  • toPromise

  • window

  • windowCount

  • windowTime

  • windowToggle

  • windowWhen

  • withLatestFrom ⭐

  • zip

⭐ - commonly used

Additional Resources

  • What Are Operators? 📰 - Official Docs

  • What Operators Are 🎥 💵 - André Staltz

PrevioustoPromiseNextSubjects

Last updated 3 years ago