lagunoff / idris-elm

The Elm architecture ported to Idris Programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Elm architecture ported on Idris Programming language

Building

(idris-elm depends on IdrisScript. If it is not already installed, please install it before preceeding)

  1. Clone the library on your local file system with git clone
$ git clone https://github.com/lagunoff/idris-elm.git
  1. Install the library using idris built-in package manager
$ cd ./idris-elm
$ idris --install idris-elm.ipkg
  1. Create new project, see examples/hello-world for guidance

Besides standard *.ipkg and Main.idr you need Runtime.js and index.html in your project root directory. Runtime.js this file contains virtual DOM implementation and other runtime utilities taken from original elm libraries. It has to be injected in index.html before main program, produced by idris.

  1. Run idris
$ idris --build <your-project>.ipkg --codegen JavaScript

Examples

Hello world source | demo
TodoMVC source | demo

About

The Elm architecture ported to Idris Programming language


Languages

Language:Idris 63.4%Language:JavaScript 36.6%