Tynn Build Status

A thin library for web development.

Description

Tynn is a thin abstraction on top of Syro, a very simple and fast router for web applications.

Usage

Here's a minimal application:

# config.ru
require "tynn"

Tynn.define do
  root do
    res.write("Hello World!")
  end
end

run(Tynn)

Check Getting Started for more information.

Documentation

See our website: http://tynn.xyz/.

Contributing

Please see the CONTRIBUTING file for more information.

License

Tynn is released under the MIT License.