The Nim asynchronous web framework

SakiKawasaki b00d465b0b v0.0.2, debug mode fix. 5 yıl önce
akane b00d465b0b v0.0.2, debug mode fix. 5 yıl önce
tests b00d465b0b v0.0.2, debug mode fix. 5 yıl önce
.gitignore 5991f1da50 main.exe deleted 5 yıl önce
LICENSE 7087ab6fb5 Initial commit 5 yıl önce
README.md b00d465b0b v0.0.2, debug mode fix. 5 yıl önce
akane.nimble b00d465b0b v0.0.2, debug mode fix. 5 yıl önce

README.md

Akane

The Nim asynchronous web framework.

Open Source Love Nim language-plastic License

Latest version - 0.0.2

Stable version - ?

Install

  • git: nimble install https://github.com/Ethosa/akane.git

Features

  • Pages with URL handling methods: equals, startswith, endswith, regex,notfound.
  • templates folder.
  • Simple usage

    import akane
    
    var server = newServer(debug=true)  # launch on http://localhost:5000
    
    server.pages:
      equal("/"):
        # type of `request` is a Request.
        await request.answer("Hello, world!")  # utf-8 encoded message.
    
    server.start()
    

    FAQ

    Q: How I can help to develop this project?
    A: You can put a :star: :3

    Copyright 2020 Ethosa