bun-server-di

Installation
SKILL.md

Bun Server Dependency Injection

Basic Usage

1. Mark Services with @Injectable

import { Injectable } from "@dangao/bun-server";

@Injectable()
class UserService {
  getUser(id: string) {
    return { id, name: "Alice" };
  }
}

2. Constructor Injection

Installs
2
GitHub Stars
1
First Seen
Feb 4, 2026
bun-server-di — dangaogit/bun-server-skills