Is there some possibilities to integrate with grpc-web-devtools or chrome devtools?
See original GitHub issueI was trying something like this:
const transport = new GrpcWebFetchTransport({
baseUrl: "localhost:3000"
});
const client = new HaberdasheryClient(transport);
const enableDevTools = window.__GRPCWEB_DEVTOOLS__ || (() => {});
enableDevTools([client]);
But I’ve got an error: TypeError: Cannot read properties of undefined (reading 'rpcCall')
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
SafetyCulture/grpc-web-devtools: Chrome & Firefox ... - GitHub
Chrome & Firefox Browser extension to aid gRPC-Web development - GitHub ... start a simple gRPC server, JavaScript client and the Envoy proxy...
Read more >gRPC-Web Developer Tools
gRPC -Web Developer Tools is a Chrome DevTools extension for the official gRPC-Web library. It allows you to inspect the gRPC network log...
Read more >Debugging gRPC-Web with Custom Chrome Developer Tools
Collect and display all gRPC-Web network requests and responses in a list. · Chrome Developer Tools extension for the official gRPC-Web library.
Read more >The state of gRPC in the browser
The Google gRPC-Web client is implemented in JavaScript using the Google Closure library base. It is available on npm as grpc-web. It originally ......
Read more >gRPC-web: Using gRPC in Your Front-End Application - Torq
gRPC-web is a JavaScript implementation of gRPC for browser clients. It gives you all the advantages of working with gRPC, such as efficient ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Simple example of partial integration with grpc-web-devtools:
grpc-web interceptors are specific to grpc-web. Our interceptors apply to all transports.