Elm is a functional programming language for declaratively creating web browser based graphical user interfaces.
5
votes
2answers
337 views
Github User Lookup
I have made my first app in Elm, a lookup of Github users.
You type the name of the user into the search bar and the user's username and profile image - which has an anchor linked to their profile - ...
1
vote
0answers
35 views
Elm RPG character generator (loads JSON and offers selections based on data)
With the dynamic/reactive UI Elm seems like an ideal language for writing this kind of thing, but the code is coming out a lot messier than I thought it would - but then this is my first time ...
2
votes
1answer
65 views
`Maybe` handling in Matrix manipulation in Elm
I'd like to learn if my rewrite is worse than the original, less clear or less "idiomatic".
I've found this code that handles updating two dimensional matrixes in Elm:
...
6
votes
1answer
457 views
Can this be written more concise and aligned with the Functional Reactive Programming paradigm?
Trying to learn FRP and Elm. Is the program below "ok" from the perspective of FRP and Elm? What could be improved? The program can be executed here: http://elm-lang.org/try
...