XUtils

purescript-aff

An asynchronous effect monad for PureScript.


Aff

CI Release Pursuit Maintainer: natefaubion

An asynchronous effect monad and threading model for PureScript.

Quick start

This quick start covers common, minimal use cases for the library. Longer examples and tutorials can be found in the docs directory.

main :: Effect Unit
main = launchAff_ do
  response <- Ajax.get "http://foo.bar"
  log response.body

Articles

  • coming soon...