Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 698 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 698 Bytes

Aurora


A Web Framework for Luau using the Lune Runtime

It is inspired by Express

Example

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

Getting Started

Head over to the Getting Started page to get started with Aurora