How is HTTP/2 flow control implemented in the Node.js version of gRPC (grpc-js)?
For the Go implementation (grpc-go), the logic is mainly in https://github.com/grpc/grpc-go/blob/master/internal/transport/ (flowcontrol.go, bdp_estimator.go); also, it's described here. However, I couldn't find anything for grpc-js.
I am mainly interested in when does a Node.js receiver send WINDOW_UPDATE frames.