Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/elm/browser

Create Elm programs that run in browsers!
https://github.com/elm/browser

browser elm history single-page-app spa

Last synced: about 1 month ago
JSON representation

Create Elm programs that run in browsers!

Lists

README

        

# Elm in the Browser!

This package allows you to create Elm programs that run in browsers.

## Learning Path

**I highly recommend working through [guide.elm-lang.org][guide] to learn how to use Elm.** It is built around a learning path that introduces concepts gradually.

[guide]: https://guide.elm-lang.org/

You can see the outline of that learning path in the `Browser` module. It lets you create Elm programs with the following functions:

1. [`sandbox`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#sandbox) — react to user input, like buttons and checkboxes
2. [`element`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#element) — talk to the outside world, like HTTP and JS interop
3. [`document`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#document) — control the `` and ``
4. [`application`](https://package.elm-lang.org/packages/elm/browser/latest/Browser#application) — create single-page apps

This order works well because important concepts and techniques are introduced at each stage. If you jump ahead, it is like building a house by starting with the roof! So again, **work through [guide.elm-lang.org][guide] to see examples and really *understand* how Elm works!**

This order also works well because it mirrors how most people introduce Elm at work. Start small. Try using Elm in a single element in an existing JavaScript project. If that goes well, try doing a bit more. Etc.