Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 624 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 624 Bytes

🐈 Lynx

Documentation ⚡️ lynx.land

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()

Features

  • 🧩 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

Documentation

Read the documentation at lynx.land.