An open API service indexing awesome lists of open source software.

https://github.com/tysonrm/simple-ioc


https://github.com/tysonrm/simple-ioc

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

# simple-ioc

## Simple inversion of control container
```
moduleBindings.set('connect-db', 'connect-mongo');
const Db = require('./dbaccess/connnect-db')(url);
Db.connect();
```