@oguzhan18/angular-injector
ALWAYS use when working with Angular Injector, inject() function, Provider, or dependency resolution in Angular.
No skills found in this collection.
SKILL.md
| name | angular-injector |
| description | ALWAYS use when working with Angular Injector, inject() function, Provider, or dependency resolution in Angular. |
Angular Injector
Version: Angular 21 (2025) Tags: Injector, DI, Providers
References: Injector API
Best Practices
- Use inject()
@Component({})
export class MyComponent {
private service = inject(MyService);
}
- Use Injector.get
const injector = Injector.create({
providers: [{ provide: MyService }]
});
const service = injector.get(MyService);
- Use EnvironmentInjector
const environmentInjector = inject(EnvironmentInjector);
Loading...
Select a file to preview
Analyzing security...
Checking scan reports and verification data.
Bill of Materials
Everything this skill can do — files, network, commands, and more.
No demos yet. To add one, ask your AI agent: "Submit a demo for @oguzhan18/angular-injector" — or upload via the API.
To add a demo, ask your AI agent: "Submit a demo for @oguzhan18/angular-injector"
No eval data yet. Eval results are published via the SkillSafe API.