Dave

Results 33 comments of Dave
trafficstars

This issue is related to https://github.com/googleapis/google-cloud-go/issues/6055 I'm not sure why firebase admin is bundled with 1.21.0 and no one is reporting the same error as me, but it can be...

how do we detect disconnection on server side so we can remove the socket?

@kuchaguangjie thank u. I think this is useful if client sends close signals. If e.g I connect via curl, it doesn't trigger.

u can checkout fast http test files. e.g. https://github.com/fasthttp/websocket/blob/master/client_server_test.go

also using nextJS facing this. but I did not use SSR ![image](https://user-images.githubusercontent.com/18649392/86234591-c4a21a80-bbc9-11ea-97f0-f5be8b4a6ce2.png) Can be easily reproduce with any sample codes. Apparently linked to this https://github.com/atlassian/react-beautiful-dnd/issues/1883 . It can be used...

Thanks @oliviertassinari I've tried your linked solution. I've removed the webpack config for alias, and updated package.json with ``` "@material-ui/styled-engine": "npm:@material-ui/styled-engine-sc@next" ``` It seems to have removed the className mismatch...

> See [#29742 (comment)](https://github.com/mui-org/material-ui/issues/29742#issuecomment-982597676) I am starting to think that we should maybe rather recommend emotion for SSR projects. There are just so many issues using `styled-components` with external library....

why doesn't README have anything that talks about Joi. First time using dynamodb, came to this repo because of google search. First part of README already asking to use Joi...

Is it possible to catch this acception? I am reading a stream from remote api and this error occurs, but cannot be caught in try/catch. > > [1] node:internal/deps/undici/undici:13946 >...

Since we need to return `next()`, I moved the timer to `.finally()` since I haven't found a way to have it in the middleware. ``` router .use(async (request, event, next)...