SafetyCulture / grpc-web-devtools

Chrome & Firefox Browser extension to aid gRPC-Web development

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Raw JSON view

rogchap opened this issue · comments

For large data sets the rendering of the JSON tree can be slow, also users may want to copy+paste the raw JSON data.

In addition to the JSON tree we should have a tab for the raw json. This could be as simple as using a <pre> tag:

return <div><pre>{JSON.stringify(data, null, 2)}</pre></div>;

We would also like to see this feature