Asena is a NestJS-like IoC web framework built on top of Hono and Bun. It combines the power of dependency injection with the performance of Bun runtime and the flexibility of Adapter design system.
For detailed documentation, please visit not ready yet. Documentation is still in progress, but updates are being made regularly.
- Dependency Injection: Built-in IoC container for managing dependencies
- Decorator-based Development: Similar to NestJS, using TypeScript decorators for routing and DI
- High Performance: Leverages Bun runtime for optimal performance
- WebSocket Support: Built-in WebSocket handling capabilities
- Middleware System: Flexible middleware architecture
- HTTP Adapters: Extensible adapter system with Hono as default
- Zero Dependencies: Only uses reflect-metadata for dependency injection
- TypeScript Support: Full TypeScript support with strict mode
- Modular Architecture: Easy to extend and customize
bun add @asenajs/asena
The easiest way to create a new Asena project is using the CLI:
# Create a new project
bun add -D @asenajs/asena-cli
asena create
This will create a new project with the following structure:
├── src/
│ ├── controllers/
│ │ └── AsenaController.ts
│ └── index.ts
├── package.json
├── tsconfig.json
├── .eslintrc.js
├── .eslintignore
└── .prettierrc.js
Alternatively, you can create a project manually:
First, create a new project using Bun:
bun init
For decorators working properly, you need to add some settings to your tsconfig. Here is a recommended file:
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
}
}
Then, install the required packages:
bun add @asenajs/asena @asenajs/hono-adapter
Add @asenajs/asena-cli to your package. This package provides a CLI for creating and managing Asena projects.
bun add -D @asenajs/asena-cli
Then, create a new asena-config.ts file using the CLI:
asena init
Note
: Built options directly copy of bun options, you can check bun documentation for more
options. Bun Documentation
Create index.ts file under your src folder:
// src/index.ts
import { AsenaServer } from '@asenajs/asena';
import { DefaultLogger } from "@asenajs/asena/logger";
import { createHonoAdapter } from '@asenajs/hono-adapter';
const [adapter, logger] = createHonoAdapter(new DefaultLogger());
await new AsenaServer(adapter)
.logger(logger)
.port(3000)
.start(true);
To run asena you need at least one controller. Create a new controller:
// src/controllers/TestController.ts
import type { Context } from '@asenajs/hono-adapter';
import { Controller } from '@asenajs/asena/server';
import { Get } from '@asenajs/asena/web';
@Controller('/hello')
export class TestController {
@Get('/world')
public async getHello(context: Context) {
return context.send('Hello World');
}
}
Finally, run the project:
## only for fast developing purposes
asena dev start
## or you can simply build then run your bundled project
asena build
## then go to dist folder and run the project this way it will consume less memory and it will be faster.
bun index.asena.js
For more information about CLI commands and usage, please visit: Asena CLI Documentation
lib/
├── adapter/ # HTTP adapter implementations
├── server/ # Core server functionality
├── ioc/ # Dependency injection container
├── utils/ # Utility functions
├── test/ # Test utilities
└── logger/ # Logging system
- Controllers: Handle incoming requests using decorators
- Services: Business logic containers that can be injected
- Middleware: Request/Response interceptors
- WebSocket: Built-in WebSocket support
- HTTP Status: Standard HTTP status codes and utilities
Built on Bun runtime, Asena provides:
- Fast startup time
- Low memory footprint
- Quick request processing
- Efficient WebSocket handling
Here is the benchmark result of Asena with Hono adapter (Basic hello world example) in every test we used bun to run the project:
Framework | Requests/sec | Latency (avg) | Transfer/sec |
---|---|---|---|
Hono | 147,031.08 | 2.69ms | 18.09MB |
Asena + Hono-adapter | 137,148.80 | 2.89ms | 16.74MB |
NestJS (Bun + Fastify) | 81,652.05 | 6.01ms | 13.78MB |
NestJS (Bun) | 64,435.83 | 6.14ms | 11.80MB |
NestJS (Bun + kiyasov/platform-hono) | 45,082.27 | 8.79ms | 5.55MB |
NestJS (Node) | 17,649.89 | 24.43ms | 4.02MB |
Benchmark conditions:
- 12 threads
- 400 connections
- 120 seconds duration
- Simple "Hello World" endpoint
- Running on same hardware
Note: Lower latency and higher requests/sec indicate better performance
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
If you encounter any issues or have questions, please open an issue on the GitHub repository.