Package

purescript-axios

Repository
iarthstar/purescript-axios
License
MIT
Uploaded by
iarthstar
Published on
2019-08-05T22:14:45Z

axios.js bindings for PureScript

Add purescript-axios to your existing projects

bower i purescript-axios

Code Snippet

main :: Effect Unit
main = launchAff_ do
  let configPost = Config 
        { url : userUrl
        , method : POST
        , data : CreateUserReq { name : "Arth K. Gajjar", job : "Developer" }
        , headers : [ Header "Content-Type" "application/json" ]
        }
  axios configPost >>= case _ of
    Right (CreateUserRes a) -> log $ "POST : " <> show a
    Left err -> logShow err

Development Guide

NOTE : Please make sure you have yarn :: Installing yarn

  • Build Project
$ yarn build
  • To Test
$ yarn test
  • To watch for changes
$ yarn start