0.2.3 • Published 2 years ago

deject v0.2.3

Weekly downloads
12
License
MIT
Repository
github
Last release
2 years ago

Dependency Injection

This is a simple package for dependency injection.

Usage

const config = require('./config')
const DI = require('deject')(config)
DI.register('port', port)
DI.register('name', name)
DI.get('server')

Configuration

This DI needs a configuration as config.js file

module.exports = {
    factory: {
        ...
    },
    register: {
        ...
    }
}

License

This project is licensed under the MIT license. See the LICENSE file for more info.