Module

HTTPure.Request

Package
purescript-httpure
Repository
cprussin/purescript-httpure

#Request Source

data Request

A Request is a method along with headers, a path, and sometimes a body.

Constructors

Instances

  • Show Request

    When using show on a Request, print the method and the path.

#fromHTTPRequest Source

fromHTTPRequest :: forall e. Request -> Aff (HTTPureEffects e) Request

Given an HTTP Request object, this method will convert it to an HTTPure Request object.