Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

school proj about reactive programming in JS/ TS

Notifications You must be signed in to change notification settings

code-inflation/pcp-reactive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

pcp-reactive

School proj about reactive programming in JS/ TS

Reactive (Java- / TypeScript)

  • Basics idea: asynchronous data streams
  • Observers
  • Hot vs. cold observables
    • COLD is when your observable creates the producer
        // COLD
        var cold = new Observable((observer) => {
        var producer = new Producer();
        // have observer listen to producer here
        });
    • HOT is when your observable closes over the producer
        // HOT
        var producer = new Producer();
        var hot = new Observable((observer) => {
        // have observer listen to producer here
        });
  • Subjects
    • Behavior Subject
    • Replay Subject
  • Operators
    • Map
    • SwitchMap
    • MergeMap
    • Filter
    • Scan
  • Frameworks:
    • RxJS
    • RxJava

Notes

About

school proj about reactive programming in JS/ TS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published