Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/GoogleChromeLabs/so-pwa
A progressive web app to read Stack Overflow content.
https://github.com/GoogleChromeLabs/so-pwa
progressive-web-app progressive-web-apps service-worker stackexchange stackoverflow workbox
Last synced: about 1 month ago
JSON representation
A progressive web app to read Stack Overflow content.
- Host: GitHub
- URL: https://github.com/GoogleChromeLabs/so-pwa
- Owner: GoogleChromeLabs
- License: apache-2.0
- Created: 2018-04-19T14:44:41.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-18T05:03:31.000Z (6 months ago)
- Last Synced: 2024-08-05T09:16:25.798Z (5 months ago)
- Topics: progressive-web-app, progressive-web-apps, service-worker, stackexchange, stackoverflow, workbox
- Language: JavaScript
- Homepage: https://so-pwa.firebaseapp.com/
- Size: 2.72 MB
- Stars: 260
- Watchers: 16
- Forks: 43
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
## "Beyond Single Page Apps" @ Google I/O 2018
The code in this project is described in more detail in
[this article](https://developers.google.com/web/updates/2018/05/beyond-spa), as well as the video
for the corresponding Google I/O 2018 session:[![Google I/O Session](https://img.youtube.com/vi/X6yof_vIQnk/0.jpg)](https://www.youtube.com/watch?v=X6yof_vIQnk)
## About SO PWA
Live deployment: https://so-pwa.firebaseapp.com/
This is a sample
[progressive web app](https://developers.google.com/web/progressive-web-apps/)
which uses the [Stack Exchange API](https://api.stackexchange.com/) to fetch the
top questions and answers from [Stack Overflow](https://stackoverflow.com/) for
a given tag.Under the hood, it's powered by the following technologies:
- Service worker generation and [Streams API](https://streams.spec.whatwg.org/)
logic via [Workbox](https://developers.google.com/web/tools/workbox/).
- Static and dynamic web hosting via
[Firebase Cloud Functions](https://firebase.google.com/docs/functions/).
- "Universal" JavaScript via ES2015 source modules, bundled for the browser and
[Node](https://nodejs.org/) by [Rollup](https://rollupjs.org/), with
[`babel-preset-env`](https://babeljs.io/docs/plugins/preset-env/) ensuring
compatibility with various runtimes.
- Shared server + service worker routing logic using
[Express-style](https://expressjs.com/en/guide/routing.html) patterns and the
[`regexparam`](https://github.com/lukeed/regexparam) library in the service
worker.## Contributing
Please read the [guide to contributing](CONTRIBUTING.md) prior to filing any
pull requests.## License
Copyright 2018 Google, Inc.
Licensed under the [Apache License, Version 2.0](LICENSE) (the "License");
you may not use this file except in compliance with the License. You may
obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.