beef331 / website

Code for the official Nim programming language website
https://nim-lang.org
18 stars 1 forks source link

prologue #9

Closed ringabout closed 3 years ago

ringabout commented 3 years ago

Name: Prologue web framework

Author: xflywind

Posting: Prologue is a powerful web framework written in Nim. It is ideal for building elegant and high performance web services.

import prologue

proc hello*(ctx: Context) {.async.} =
  resp "<h1>Hello, Prologue!</h1>"

let app = newApp()
app.get("/", hello)
app.run()