cayter

Results 48 comments of cayter

@mum4k Thanks for the detailed explanation. I'm still reading through the source code and only doing this when I have free time, will try to submit a PR within the...

Okay, did some quick experiments within my own codebase, here's the [result](https://asciinema.org/a/v6R4F6l3FA4NFoetzLdShoLwm) and the code implementation is over [here](https://github.com/appist/appy/blob/master/cmd_start.go#L483-L614). Will find some time to port the implementation back to this...

> Apart from that please check out the other portions of the CONTRIBUTING.md doc, there is also a requirement to sign Google's CLA. Just did. > Please ignore my question...

@mum4k Yes, sorry for the late reply. My full-time job has been crazy in the last 3 weeks due to Covid19 pandemic. Will try to squeeze some time in the...

I had the same requirement and initially got some dirty workarounds to make it work with just SvelteKit but it's not maintainable. I have come to understand the direction SvelteKit...

> Svelte kit supports the graphql standard very well out og the box. Because graphql specifies a single endpont just use a single file /graphql/index.js that supports the spec We...

Just FYI, for those who are not running on serverless technology, you can rely on [this](https://github.com/sveltejs/kit/tree/master/packages/adapter-node#custom-server) to setup your own HTTP server alongside the websocket server. I had successfully setup...

It seems `solid-start` included the initial implementation for [websocket](https://github.com/solidjs/solid-start/blob/main/examples/with-websocket/src/routes/room/%5Bid%5D.tsx#L4), probably SvelteKit can borrow some ideas from it too. Disclaimer: I'm not sure if it only plays well with `node` adapter...

Coming back to check on this again, is anyone using this library on production already? And do they have more than 20 tables? If yes, how do they workaround the...

Facing the same issue with normal static assets serving. I tried removing `Readable.fromWeb()` [here](https://github.com/honojs/node-server/blob/main/src/listener.ts#L83) and it worked. Is this the only place we need to update?