Skip to content

Instantly share code, notes, and snippets.

View vahidvdn's full-sized avatar
🏠
Working from home

Vahid Najafi vahidvdn

🏠
Working from home
View GitHub Profile
@vahidvdn
vahidvdn / dependency-injection.ts
Created February 20, 2024 15:50
Implement simple dependency injection with Reflect
const reflectObj = {};
function Injectable() {
return function (target: any) {
console.log('Injectable');
Reflect.defineMetadata('injectable', true, target);
reflectObj[target] = true;
};
}
export interface Type<T = any> {
new (...args: any[]): T;
}
class Container {
public dependencies = [];
public init(deps: any[]) {
deps.map((target) => {
const isInjectable = Reflect.getMetadata('injectable', target);