Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nicell/lynx

A Simple and Fast Luau Web Framework for Lune
https://github.com/nicell/lynx

luau lune router web-framework

Last synced: about 1 month ago
JSON representation

A Simple and Fast Luau Web Framework for Lune

Awesome Lists containing this project

README

        

# 🐈 Lynx

[**Documentation ⚡️ lynx.land**](https://lynx.land)

Lynx is a simple and fast Luau web framework for Lune. Lynx is inspired by [Hono](https://github.com/honojs/hono) and shares a similar API.

```luau
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](https://lynx.land).