I am quite new to gRPC but I wish to use it in my current application.
```syntax = "proto3";
package location;
import "protos/auth.proto";
service LocationManager{
rpc updateLocation(LocationUpdateRequest) returns (LocationUpdateResponse);
}
enum LocationUpdateTarget{
CUSTOMER = 0;
RIDER = 1;
}
message Location{
double longitude = 3;
double latitude = 4;
}
message LocationUpdateRequest{
auth.AuthParams authParams = 1;
LocationUpdateTarget locationUpdateTarget = 2;
Location location = 3;
}
message LocationUpdateResponse{
int32 statusCode = 1;
}
```
How do I generate the NodeJS Client Libraries for My Server and The Client.
The Documentations isn't clear about this.
Thank you.