Mark Fulton

Results 136 comments of Mark Fulton

Thank you for the insights there. Perhaps then a section in the docs on best practices with examples would be a good addition to Fresh's docs. Folks coming from other...

A Single Page Application (SPA) may certainly be more ideal than a Multiple Page Application (MPA) but either way being able to write the application with Deno rather than Node...

Something else that building the Fresh handler for offline usage gives over a SPA PWA solution is true dynamic routing and pages. With a SPA any data driven content has...

Thank you for sharing @daniel-nagy; I will keep this in mind for future use cases. We moved a while ago to use GraphQL over string-based message posting and that is...

> 3. Service workers do not work on web views. Web views do support service workers. On iOS it requires using [App-Bound Domains](https://webkit.org/blog/10882/app-bound-domains/).

:+1: I would also like this feature for Windows and Linux file paths.

`tel` URIs might also be nice to make into links.

It looks like [Medium supports downloading lists](https://blog.medium.com/read-stories-offline-e9d3ddcd4497) but, from what I can tell, Conduit doesn't currently have lists. I think having the ability to download single articles is sufficient for...

I am hesitant to make a PR for this due to previous discussions on which way to go but am willing to do so.

I believe I just ran into this same issue: ```ts const textEncoder = new TextEncoder(); const dataEncoder = new class { encode(value: string) { return textEncoder.encode(`data: ${value}\r\n\r\n`); } }(); Deno.serve(()...