Escher.jl

Composable Web UIs in Julia
Author JuliaGizmos
Popularity
326 Stars
Updated Last
2 Years Ago
Started In
November 2014

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))