https://github.com/tysonrm/simple-ioc
https://github.com/tysonrm/simple-ioc
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/tysonrm/simple-ioc
- Owner: tysonrm
- Created: 2020-07-16T17:08:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-16T17:17:06.000Z (almost 6 years ago)
- Last Synced: 2025-01-07T07:20:42.107Z (over 1 year ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```