Roger Chapman
Roger Chapman
I'm running the example in the README usage section; the server starts and is listening but does not appear to be doing any service announcement and therefore never can be...
With new releases are made the header files need to be updated too. We should split out the include directory for each platform to not conflict on builds and make...
**Describe the bug** I was unable to get a simple gRPC example working. There also seems to be issues if you import any messages and also does not work with...
I know the docs say to use react 0.14.0 but it also says ">=" Is there plans to upgrade to a new version of react? The part that seems broken...
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...
From @Globegitter > Aaahh, I did not see the > > enableDevTools([ > client, > ]); > section. This is not visible in the chrome store or in the plugin...
Like the Network tab (and most terminals) scrolling should track to the bottom of the list unless the user manually scrolls up
Currently we use the default HTML `title` for displaying tool tips. This can be slow to render and is never that obvious to discover. Tool tip should show on `hover`...
Since https://github.com/graph-gophers/graphql-go/commit/498fe3961c3058c45f5ad90b1212a48adfbba266 we can add `@deprecated` to types like so: ```graphql type User { name: String! age: int @deprecated(reason: "Use `dob` instead") dob: Date! } ``` However the `@deprecated` directive...
`request` does not always have an `err` object when `res.status !== 200` Using `getInfo.js` as an example: ``` javascript request(requestConfigs, function(err, res, body) { if (!err && res.statusCode == 200)...