$ luarocks install nestluaNestLua brings a NestJS-style developer experience to Lua:
* nestlua - modules, controllers and routes with Nest-like
path syntax (:params and * wildcards), guards,
interceptors, argument decorators (use_param,
use_query, use_header, use_body, use_custom),
pipes, and a full set of Nest-style HTTP
exceptions (nest:not_found_error(), etc.) with
exception filters (module/controller/route
:filter()).
* nestlua.scheme - a class-validator-inspired object/value
validator: chainable schemas for strings,
numbers, dates, arrays, tables and nested
objects, with a large built-in constraint
library (email, url, credit_card, ip_address,
json, jwt, and many more) plus a custom
type/constraint extension system.
NestLua implements only the routing and validation layer; it expects
a separate HTTP server adapter to translate real network traffic into
the plain request/response tables it reads and returns, and to call
module:handle(request) itself. This keeps it portable across any Lua
HTTP stack (OpenResty/nginx, luasocket, a custom binding, etc).