Getting Started
Lynx is a fast and simple Luau web framework for Lune. Lynx is inspired by Hono and shares a similar API.
Installation
To install Lynx, add the repository as a submodule in your project.
This will add Lynx to your project in the lynx
directory.
To update Lynx, update the submodule from the remote.
Require Alias
To make requiring Lynx easier, you can add an alias to your project.
If you’re using the Luau LSP VSCode extension, you can add the alias to your settings.json
.
Now you can require Lynx using the alias.
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
Use Cases
Lynx is a simple web framework that can be used for a variety of applications. It can be used for a simple web API, a proxy server, or it can be composed with other services.