julia> ] # enter Pkg mode
pkg> add Genie # Get Genie
julia> using Genie # Bring Genie into scope
# Register a new route at "/hello"
julia> using Genie.Router
julia> route("/hello") do
"Hello - Welcome to Genie!"
end
# Start the web server and visit http://localhost:8000/hello in your favorite browser
julia> up()
Ready
Web Server starting at 127.0.0.1:8000
Web Server running at 127.0.0.1:8000
Fast, flexible, non-blocking HTTP and WebSockets servers.
HTML, Markdown, and Julia super fast (compiled fast!) view templates.
With optional strong typed params, lambdas or full Controller dispatch.
Build DB agnostic web apps with SearchLight, Genie's powerful and expressive ORM.
Stress-free DB versioning in pure SQL with SearchLight's migrations tools.
Guaranteed data integrity with pure Julia model validations.