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
/
basic
/
services
/
user_service.js
15 lines
(12 loc)
•
262 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* A fictional UserService that fetches users from a database using an external library */
var
UserServiceFactory
=
function
(
database
){
return
{
getUsers
:
function
(
){
return
database.
fetch
(
'Users'
); } } }
module
.
exports
=
UserServiceFactory
;