0.1.1 • Published 4 years ago

elm-render v0.1.1

Weekly downloads
1
License
MIT, Apache-2.0
Repository
github
Last release
4 years ago

elm-render

See what Elm renders.

Requirements

  • Elm compiler
  • Node.js

Installation / Usage

$ elm-render [--elm-binary=/path/to/your/elm] <..sources>

Example:

$ cat Hello.elm
module Hello exposing (..)

import Html

main =
  Html.text "Hello, world!"

$ npm init -y
$ npm install elm-render --save
$ npx elm-render Hello.elm
# Hello, world!