Alosaur π¦
Alosaur - Deno web framework π¦.
- Area - these are the modules of your application.
- Controller - are responsible for controlling the flow of the application execution.
- Middleware - provide a convenient mechanism for filtering HTTP requests entering your application.
- Hooks - middleware for area, controller and actions with support DI. Have 3 life cyclic functions:
onPreAction, onPostAction, onCatchAction
- Decorators - for query, cookie, parametrs, routes and etc.
- Dependency Injection - for all controllers and hooks by default. (more about alosaur injection).
- Security - supports security context (Session, Authentication, Authorization, OAuth, Google and custom strategy) Security
- Render pages any template render engine. (more)
How do I use Alosaur in Deno Deploy? Use the light version of Alosaur: Alosaur Lite
Simple example
app.ts:
import { App, Area, Controller, Get } from "https://deno.land/x/alosaur@v0.36.0/mod.ts";
@Controller() // or specific path @Controller("/home")
export class HomeController {
@Get() // or specific path @Get("/hello")
text() {
return "Hello world";
}
}
// Declare module
@Area({
controllers: [HomeController],
})
export class HomeArea {}
// Create alosaur application
const app = new App({
areas: [HomeArea],
});
app.listen();
And run
deno run --allow-net app.ts