SwiftDocOrg / swift-doc

A documentation generator for Swift projects
https://swiftdoc.org
MIT License
1.68k stars 98 forks source link

Implement Service Workers for offline access #43

Open mattt opened 4 years ago

mattt commented 4 years ago

The Service Worker API allows webpages to download, install, and activate resources that can later be used by the browser. This allows users to view webpages when they're not connected to the Internet or the server hosting the original webpage is offline. Typically, things like cache invalidation and state restoration present significant challenges to adoption, but we fortunately don't have to deal with those for static content like documentation.

mattt commented 4 years ago

Related to #44