https://github.com/open-node/dm
Dependency Injection Manager for Node.js
https://github.com/open-node/dm
Last synced: 3 months ago
JSON representation
Dependency Injection Manager for Node.js
- Host: GitHub
- URL: https://github.com/open-node/dm
- Owner: open-node
- License: mit
- Created: 2020-11-23T08:56:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-28T02:43:47.000Z (over 3 years ago)
- Last Synced: 2025-02-25T21:18:30.423Z (4 months ago)
- Language: TypeScript
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @open-node/dm
Dependency Injection Manager for Node.js[](https://travis-ci.org/open-node/dm)
[](https://codecov.io/gh/open-node/dm)# Installation
npm i @open-node/dm --save# Usage
const _ = require('lodash');
const DM = require('@open-node/dm');const dm = DM(_);
const deps = {};
dm.auto(modules, deps, args);