The Nim asynchronous web framework

Ethosa b521e0fbdd debug mode updated, templates updated. 5 роки тому
akane b521e0fbdd debug mode updated, templates updated. 5 роки тому
tests b521e0fbdd debug mode updated, templates updated. 5 роки тому
.gitignore 53626d9f67 main.exe deleted 5 роки тому
LICENSE 9799391608 Initial commit 5 роки тому
README.md 02b2ace8ac v0.0.3, debug mode extended 5 роки тому
akane.nimble 02b2ace8ac v0.0.3, debug mode extended 5 роки тому

README.md

Akane

The Nim asynchronous web framework.

Open Source Love Nim language-plastic License

Latest version - 0.0.3

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.
  • Only the standard library used.
  • Debug mode.
  • 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