Mark Fulton
Mark Fulton
Awesome. Thank you. On Wed, Jan 25, 2023, 3:44 AM Alex Ross ***@***.***> wrote: > "Go to Previous Diff in Pull Request" is already available in the > pre-release build....
The documentation hasn't been fully updated yet but GraphQL Yoga supports Apollo Federation for free: - https://github.com/dotansimha/graphql-yoga/issues/3015 - [Apollo Federation – GraphQL Yoga](https://the-guild.dev/graphql/yoga-server/docs/features/apollo-federation) - [Comparison with other JavaScript GraphQL Server...
> The way to extend static part is requested multiple times, I still think the right way to do this is to convert them to class declarations. (Because, well, they...
While composing multiple readable streams into a single one I found that in some cases I need to generate the streams asynchronously. This lead me to a different implementation with...
Hmmm… I found a different way to concatenate streams by actually using `ReadableStream.from()` and then using `pipeThrough()` with a `TransformStream` to flatten it. I'm not sure yet which solution I...
Examples: - streaming multiple files into one stream (e.g. to a file or network response) - adding content prefix to a response stream from a `fetch` `Response` keeping things as...
@kt3k with the `for…await` loops how do you use it with `pipeTo()` and/or `pipeThrough()`? If I want to process chunks then the looping makes perfect sense to me but if...
I too want this functionality. An additional benefit to inline snapshots is that read permissions only need to be granted along with write permissions when running `--update`, otherwise the expected...
I tried creating a Fresh plugin the other day to support serving a Fresh app offline via a service worker. I got blocked by service workers not supporting 2 things:...
The new [ahead-of-time builds](https://fresh.deno.dev/docs/concepts/ahead-of-time-builds) should be usable as a manifest for a service worker. I feel like Fresh is already in a pretty close state to supporting offline apps. I...