0.0.3 • Published 5 years ago

@architect-io/nodejs-launcher v0.0.3

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
5 years ago

architect-javascript-launcher

Javascript launcher for the architect CLI

oclif Version Downloads/week License

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;