
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
injective-module
Advanced tools
This package provides dependency injection functionality to your project and modules syntax
This module developed to provide friendly syntaxes for dependency injections in TypeScript projects.
$ npm install injective-module
This example shows how to resolve the dependencies in the class without initializing the children's instances.
import { Injectable, Resolver } from 'injective-module'
@Injectable()
class FirstClass {
say() {
console.log('This is first class')
}
}
@Injectable()
class SecondClass {
say() {
console.log('This is second class')
}
}
class MainClass {
constructor(
public readonly firstClass: FirstClass,
public readonly secondClass: SecondClass,
)
}
const mainClass = Resolver.resolve<MainClass>(MainClass)
mainClass.firstClass.say() // This is first class
mainClass.secondClass.say() // This is second class
This example shows how to resolve the dependencies in the class with the @Module decorator.
import { Injectable, Module, Resolver, InstanceWrapper } from 'injective-module'
@Injectable()
class FirstPrivider {
say() {
console.log('This is first provider')
}
}
@Injectable()
class SecondProvider {
say() {
console.log('This is second provider')
}
}
class FirstService {
constructor(
public readonly firstPrivider: FirstPrivider,
public readonly secondProvider: SecondProvider,
)
}
@Module({
providers: [FirstPrivider, SecondProvider, FirstService],
exports: [FirstService],
})
export class FirstModule {}
@Module({
imports: [FirstModule],
})
export class ApplicationModule extends InstanceWrapper<{
firstModule: FirstModule
}> {
onInit() {
console.log(this.instances) // { firstModule: FirstModule }
console.log(this.imports) // { firstModule: FirstModule }
console.log(this.exports) // {}
}
}
const applicationModule = Resolver.resolve<InstanceWrapper<{
firstModule: FirstModule
}>>(ApplicationModule)
console.log(applicationModule.instances) // { firstModule: FirstModule }
console.log(applicationModule.imports) // { firstModule: FirstModule }
console.log(applicationModule.exports) // {}
The @Injectable() decorator used for defining the contructors implementation metadata and getting it in application via Reflect
Example:
@Injectable()
class InjectableClass {
say() {
console.log('Hi!')
}
}
@Injectable()
class MainClass {
constructor(private injectableClass: InjectableClass) { }
}
const mainClass = Resolver.resolve<MainClass>(MainClass)
mainClass.injectableClass.say() // Hi!
The @Module() decorator used to define imports, providers and exports for decorated class. Those instances will be available in a decorated class with automatically resolved dependencies. This decorator should be used along with the InstanceWrapper abstract class, this class allowed to retrieve interesting instances from Reflect metadata which is dependent on the decorated class.
| key | description | default |
|---|---|---|
| imports | This key used for importing the other modules and adding the exported instances to the decorated class. | [] |
| providers | This key used to resolving the dependencies inside the module. | [] |
| exports | Using for sharing instances between modules. | [] |
Example:
@Injectable()
class FirstClass {
say() {
console.log('Hi first class!')
}
}
@Injectable()
class SecondClass {
say() {
console.log('Hi second class!')
}
}
@Injectable()
class ThirdClass {
constructor(
private firstClass: FirstClass,
private secondClass: SecondClass,
) { }
}
@Module({
providers: [FirstClass, SecondClass, ThirdClass],
exports: [ThirdClass]
})
class FirstModule {}
@Module({
imports: [FirstModule]
})
class SecondModule extends InstanceWrapper<{
firstModule: FirstModule
}> {
onInit() {
this.instances.firstModule.firstClass.say() // Hi first class!
this.instances.firstModule.secondClass.say() // Hi second class!
}
}
const secondModule = Resolver.resolve<InstanceWrapper<{
firstModule: FirstModule
}>>(SecondModule)
// Usage outside the class
secondModule.instances.firstModule.firstClass.say() // Hi first class!
secondModule.instances.firstModule.secondClass.say() // Hi second class!
FAQs
This package provides dependency injection functionality to your project and modules syntax
We found that injective-module demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.