https://i.sstatic.net/lxvWN.png
I recently attempted to create a gRPC Angular client by following the steps outlined in this article: here
During the process, I encountered an issue while running the command:
protoc --plugin=protoc-gen-ts="{ABSOLUTEPATH}\node_modules\.bin\protoc-gen-ts.cmd"
--js_out="import_style=commonjs,binary:src/app/generated"
--ts_out="service=grpc-web:src/app/generated" src/app/protos/greet.proto,
The error message displayed was:
Could not make proto path relative: src/app/protos/greet.proto: No such file or directory
. Despite confirming that the directory and greet.proto file do exist.
If anyone can offer assistance with resolving this issue, I would greatly appreciate it. Thank you in advance!