Lynx is a simple and fast Luau web framework for Lune. Lynx is inspired by Hono and shares a similar API.
local app = Lynx.new()
app:get('/', function(c)
return c:text('Lynx!')
end)
app:serve()
- 🧩 Simple API - Convenient methods for creating routes and generating a response
- ⚡️ Fast Routing - Efficient routing using a radix tree
- 📦 Intuitive Middleware - Extend request handling easily
Read the documentation at lynx.land.