Skip to content

Instantly share code, notes, and snippets.

@mbomhoff
mbomhoff / ClientFileDownload.elm
Created July 12, 2018 23:03
Client-side file download in elm
module Main exposing (..)
import Html exposing (Html, Attribute, text, div, textarea, a, button)
import Html.App exposing (beginnerProgram)
import Html.Attributes exposing (..)
import Html.Events exposing (onInput)
import Http exposing (uriEncode)
main =