Fuji.jl

A lightweight web server written in Julia
Popularity
9 Stars
Updated Last
3 Years Ago
Started In
June 2017

Fuji

A lightweight web server written in Julia.

Documentation PackageEvaluator Build Status
Stable Documentation Latest Documentation Julia v0.6 Tests Build Status Coveralls

Quickstart

using Fuji

route("/hi") do req, res
    "hi!"
end

route("/hello/:name") do req, res
    string("hello, ", req.params["name"], "!")
end

Fuji.start()

License

Fuji is available under the MIT license. See the LICENSE file for details.