UNPKG
kontainer-di
Version:
latest (0.9.9)
0.9.9
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
A simple lightweight Dependency Injection container
github.com/redradix/kontainer
redradix/kontainer
kontainer-di
/
examples
/
async
/
app.js
8 lines
(5 loc)
•
184 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
var
kontainer =
require
(
'./containerConfig'
);
var
webApp; kontainer.
startModule
(
'web'
, {
async
:
true
}).
then
(
function
(
webApp
){
console
.
log
(
'Web app started on '
, webApp.
port
); });