skitoo / elm-http

Make HTTP requests in Elm

Home Page:http://package.elm-lang.org/packages/evancz/elm-http/latest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

elm-http

Make HTTP requests in Elm.

The Http module aims to cover some of the most common cases of requesting JSON data, but also have lower-level functions such that the API covers all of the underlying functionality.

Example

import Http
import Json.Decode as Json exposing ((:=))
import Task exposing (..)


lookupZipCode : String -> Task Http.Error (List String)
lookupZipCode query =
    Http.get places ("http://api.zippopotam.us/us/" ++ query)


places : Json.Decoder (List String)
places =
  let place =
        Json.object2 (\city state -> city ++ ", " ++ state)
          ("place name" := Json.string)
          ("state" := Json.string)
  in
      "places" := Json.list place

About

Make HTTP requests in Elm

http://package.elm-lang.org/packages/evancz/elm-http/latest

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Elm 76.7%Language:JavaScript 23.3%