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

Latest commit

 

History

History
15 lines (9 loc) · 894 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 894 Bytes

Repository archived

I never got the asynchronous part running reliably in lua, have not used or worked on this library for quite some time now, and have no plans to do so in the near feature. I'll leave it archived in case someone finds it useful as a starting point for another attempt.

lua-minittp

Extremely minimalistic web framework

Slightly inspired by web.py and uhttp, this is (nay, will be) a small web framework that allows you to build dynamic websites without too much scaffolding.

Essentially you get to write a lua script that gets a request and can return a response. Simple structures to build and send the various parts of the response are provided. See the examples for more information.

A minimal webserver is provided for local testing, but you should really proxy this through nginx or apache. It supports direct proxying and FastCGI.

Very much Work In Progress.