service-component
Version:
A simple Service Component Architecture framework for Node.js
26 lines (25 loc) • 575 B
JSON
{
"name" : "Deployer",
"host" : "http://localhost",
"services" : {
"deploy" : {
"method" : "get",
"url" : "/ping",
"bind" : {
"component" : "Pinger",
"service" : "ping"
}
}
},
"components" : {
"Pinger" : {
"host" : "http://localhost",
"services" : {
"instantiate" : {
"method" : "get",
"url" : "/ping"
}
}
}
}
}