SkillAgentSearch skills...

Alosaur

Alosaur - Deno web framework with many ES Decorators

Install / Use

/learn @alosaur/Alosaur
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Alosaur 🦖

Alosaur - Deno web framework 🦖.

Documentation

test sponsors

  • 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 - ES decorators for query, cookie, parameters, routes and etc.
  • Dependency Injection - for all controllers and hooks by default.
  • 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/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

More examples

Sponsors

<a align="center" href="https://opencollective.com/alosaur" target="_blank"><img src="https://opencollective.com/alosaur/sponsors.svg?width=1000&t=2" width="2000"></a>

Backers

<a href="https://opencollective.com/alosaur" target="_blank"><img src="https://opencollective.com/alosaur/backers.svg?width=1000&t=1"></a>

Related Skills

View on GitHub
GitHub Stars818
CategoryDevelopment
Updated28d ago
Forks48

Languages

TypeScript

Security Score

100/100

Audited on Mar 3, 2026

No findings