Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Latest commit

 

History

History
44 lines (36 loc) · 1.59 KB

README.md

File metadata and controls

44 lines (36 loc) · 1.59 KB


Kolba is a fast, minimal, web framework for Lua.


version MIT IRC contributions welcome

Try it

~$ sudo apt-get install luarocks
~$ sudo luarocks install kolba
~$ lua5.3
Lua 5.3.3  Copyright (C) 1994-2016 Lua.org, PUC-Rio
> kolba = require("kolba")
> app = kolba.create()
> app.route("GET", "/", "Hello, World!")
> app.run()
The kolba development server is running on port 7000

Ways to contribute

Code

  • Star the project
  • Report a bug or suggest an enhancement by creating an issue
  • Fork the repository and create a pull request
  • Use kolba to build something and then tell the world!

Useful links