This repository contains a very small Elm frontend application. Its purpose is simply to showcase a minimal Elm project structure and include the compiled Elm output inside a static HTML file.
The project does not implement any complex UI or business logic. It serves as a compact example of how an Elm application is organized and how the generated JavaScript is embedded into an HTML page. The index.html file includes the compiled Elm output produced by the Elm compiler .
- A minimal Elm project (
elm.json,src/folder) - A simple
index.htmlfile that loads and runs the Elm app - A couple of small JSON files used for local testing
The repository is mainly for experimentation, testing, and reference — a minimal baseline for running Elm in the browser without additional tooling or frameworks.
Compile the Elm source:
elm make src/Main.elm --output=elm.jsThen open index.html in your browser.