LuaFlare icon indicating copy to clipboard operation
LuaFlare copied to clipboard

An entire web server written in Lua.

Results 6 LuaFlare issues
Sort by recently updated
recently updated
newest added

Update cookies to be more intuitive and easier to use.

enhancement

What should be the outcome of the following: ``` lua local hosts = require("luaflare.hosts") local function hello(req, res, whom) res:append("Hello, ") :append(whom) :append("!") end local function hello_world(req, res, path) return...

Should continued headers be joined with a space, newline, or nothing? Current behavior is at `inc/request.lua: read_headers()`: ``` lua ret[lastheader] = ret[lastheader] .. " " .. val:trim() ```