Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 275 Bytes

NIM.md

File metadata and controls

12 lines (9 loc) · 275 Bytes

Jester is a sinatra-like web framework for Nim. Jester provides a DSL for quickly creating web applications in Nim.

Example:

import jester, asyncdispatch, htmlgen

routes:
  get "/":
    resp h1("Hello world")

runForever()