• Stars
    star
    335
  • Rank 125,872 (Top 3 %)
  • Language
    Julia
  • License
    Other
  • Created almost 10 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Composable Web UIs in Julia

Escher

Escher has been repurposed to be a metapackage around Interact.jl and other packages for web deployment (so far it includes Mux.jl but more things may be added as they become available). Refer to the Interact documentation (in particular the deployment section).

You can replace using Interact, Mux with using Escher, i.e.:

using Escher
ui = @manipulate for i in 1:100
    i
end
webio_serve(page("/", req -> ui))