
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@clawject/di
Advanced tools
Clawject is a full-stack, type-safe, declarative Dependency Injection framework for TypeScript. Clawject designed to make dependency injection and inversion of control in TypeScript as effortless, clear and intuitive as possible. It allows defining class
Clawject is a full-stack, type-safe, declarative Dependency Injection framework for TypeScript. Clawject designed to make dependency injection and inversion of control in TypeScript as effortless, clear and intuitive as possible. It allows defining class dependencies in a declarative way, without the need to use injection tokens or any other boilerplate, especially when it comes to interfaces and generics.
Check out Clawject website for more details and installation guide.
interface IRepository<T> { /*...*/ }
class RepositoryImpl<T> implements IRepository<T> { /*...*/ }
class PrimitivesService {
constructor(
private stringRepository: IRepository<string>,
private numberRepository: IRepository<number>,
private booleanRepository: IRepository<boolean>,
) {}
}
@ClawjectApplication
class Application {
stringRepository = Bean(RepositoryImpl<string>);
numberRepository = Bean(RepositoryImpl<number>);
booleanRepository = Bean(RepositoryImpl<boolean>);
primitivesService = Bean(PrimitivesService);
}
interface IRepository<T> { /*...*/ }
@Injectable()
class RepositoryImpl<T> implements IRepository<T> { /*...*/ }
const InjectionTokens = {
StringRepository: Symbol('StringRepository'),
NumberRepository: Symbol('NumberRepository'),
BooleanRepository: Symbol('BooleanRepository'),
}
@Injectable()
class PrimitivesService {
constructor(
@Inject(InjectionTokens.StringRepository)
private stringRepository: IRepository<string>,
@Inject(InjectionTokens.NumberRepository)
private numberRepository: IRepository<number>,
@Inject(InjectionTokens.BooleanRepository)
private booleanRepository: IRepository<boolean>,
) {}
}
@Module({
providers: [
PrimitivesService,
{
provide: InjectionTokens.StringRepository,
useClass: RepositoryImpl,
},
{
provide: InjectionTokens.NumberRepository,
useClass: RepositoryImpl,
},
{
provide: InjectionTokens.BooleanRepository,
useClass: RepositoryImpl,
},
],
})
class Application {}
reflect-metadata
library.Clawject is MIT licensed.
FAQs
Unknown package
The npm package @clawject/di receives a total of 32 weekly downloads. As such, @clawject/di popularity was classified as not popular.
We found that @clawject/di demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.