architect-node-launcher
Node.js launcher for the architect CLI
Injection Schema
Example .proto file
syntax = "proto3";
service MyService {
rpc ServiceMethod (MyRequest) returns (MyResponse) {}
}
message MyRequest {
// ...
}
``
message MyResponse {
// ...
}
Example architect.json
{
"name": "my-service",
"main": "index.js",
"proto": "main.proto",
"dependencies": {
"dependency-name": "1.2.3"
}
}
Main file schema
// Instance of service will be constructed with location-aware GRPC stubs
class MyService {
constructor(dependency_1) {
this.dependency_1 = dependency_1;
}
// GRPC methods matching those cited in the corresponding Protobuf service...
ServiceMethod(call, callback) {
// ...
}
}
MyService.dependencies = ['dependency-name'];
module.exports = MyService;