Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Lightweight (less than 1kb of code) declarative Dependency Injection library for Javascript on any platform.
The dependency registry is centralized which leads to a good type inference and the ability to type check the dependency graph before runtime.
Nodejs:
npm install --save dismoi
Browser (CDN)
<script type="module">
import {createProvider} from 'https://unpkg.com/dismoi@0.0.1/src/index.js'
</script>
(replace 0.0.1 by the appropriate version)
You define a registry of injectable items within a flat object whose keys (strings or Symbols) are the lookup tokens and values are factories to instantiate those items.
A factory must have the following signature
<T extends {}>(deps?: T) => any // returns an injectable
deps
is an object providing the named dependency map of the injectable.
Alternatively it can be any value which gets automatically wrapped into a factory function.
const token = Symbol('something');
const injectables = {
[token]: ({foo}) => { return 'whathever'},
foo: ({externalThing, someValue}) => externalThing,
someValue: 'something' // a value
}
the dependency graph of your module is the following:
foo
foo
depends on externalThing
(not provided by the module) and someValue
someValue
always returns the string something
Factories can be decorated to adapt to any instantiation pattern:
import {fromClass, singleton} from 'dismoi';
const injectables = {
foo: fromClass(class blah {
constructor({depA}){};
}),
depA: singleton(someFactory) // make sure someFactory only instantiate once and then returns the same instance
}
How factories get registered in the module is left out: simple imports, to sophisticated class annotation system.
You pass the injectable registry to the createProvider
function alongside with the injectable list you want to expose.
It gives you a function to instantiate the module:
Example using the injectables aforementioned
import {createProvider} from 'dismoi';
const provide = createProvider({
injectables,
api:['foo']
});
You call the provide
function to instantiate the module passing the missing dependencies in the graph, eventually overwriting some you have defined in the registry.
const moduleA = provide({
someValue: 'otherValue', // overwrite
externalThing: 42 // required
})
Then injectables get instantiated lazily when required through their getter.
A different instance is created each time, unless you have a "singleton" factory
const { foo } = services;
const otherFoo = services.foo;
An exception is thrown if some dependencies are not met.
See the extensive test suite for advanced usages.
Typescript is well-supported and the compiler will throw if there are incompatible dependencies or if some are missing.
FAQs
dependency injection for javascript projects
The npm package dismoi receives a total of 2,145 weekly downloads. As such, dismoi popularity was classified as popular.
We found that dismoi 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.