Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nicell/lynx
- Owner: Nicell
- License: mit
- Created: 2024-06-20T06:37:23.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-16T17:28:40.000Z (about 2 months ago)
- Last Synced: 2024-09-16T21:35:29.568Z (about 2 months ago)
- Topics: luau, lune, router, web-framework
- Language: Luau
- Homepage: https://lynx.land
- Size: 249 KB
- Stars: 10
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).