Live data from Hacker News

Functional Reactive Programming

wiki.haskell.org

1–10 of 121 posts

Re: Functional Reactive Programming

#6
post #5

I learn FP throught ELM and I really enjoyed it. Unfortunately the language seems dead. What are the easiest FP language to learn ? I checked multiple time Haskell but it seems really hard

I have been using rxjs with typescript for some stuff. Functional reactive has proven to be a good paradigm for some stuff in the UI and thornier parts of shared state across multiple applications.

Re: Functional Reactive Programming

#7
post #5

I learn FP throught ELM and I really enjoyed it. Unfortunately the language seems dead. What are the easiest FP language to learn ? I checked multiple time Haskell but it seems really hard

Proper FP as in pure functional programming?

Probably Purescript in the frontend (also hard) or Scala on the backend (easier, because you can also write impure code).

Re: Functional Reactive Programming

#8
post #4
post #2

FRP is a fascinating paradigm, but I find I really have to turn my brain inside-out to "get" it. But it's really cool to have UIs that are completely consistent.

The funny thing is that good ole MVC also gave us UIs that are completely consistent.

Not really. It's just that at the time, SPAs and concurrent requests were not really a thing or only used rarely.

Re: Functional Reactive Programming

#10
post #4
post #2

FRP is a fascinating paradigm, but I find I really have to turn my brain inside-out to "get" it. But it's really cool to have UIs that are completely consistent.

The funny thing is that good ole MVC also gave us UIs that are completely consistent.

Yeah but for a limited subset of desirable functionality. It sucks to use for something where you want a dynamic UI.
Post reply on HN