Skip to content

jackcook/Fuji.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.