What are Eff and Aff?
Eff is a synchronous effect monad. It is used to sequence effectful foreign JavaScript code – things like random number generation, reading and writing mutable values, writing to the console and throwing and catching exceptions. Aff is an asynchronous effect monad. It can handle and sequence effectful asynchronous code, like AJAX requests, timeouts, and network … Read more