🚧 AvleonJs is in active development and not ready for production use.

🎉Release v0.2.6

AVLEON

A powerful TypeScript-based web framework built on Fastify.
welcome.controller.ts
app.ts
import { ApiController, Get } from "@avleon/core";

@ApiController
export class WelcomeController {
  @Get()
  sayHello() {
    return "Hello, Avleon!";
  }
}