A Web Framework for Luau using the Lune Runtime
It is inspired by Express
Install Aurora using Farmer
farmer init aurora-example
cd aurora-example
farmer add aurora
local aurora = require("@aurora/")
-- GET request to /
aurora.get("/", function(req, res)
res.send("Hello World")
end)
aurora.serve() -- runs the server on port 8080
Head over to the Getting Started page to get started with Aurora