https://github.com/donkeycode/app-shell
https://github.com/donkeycode/app-shell
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/donkeycode/app-shell
- Owner: donkeycode
- Created: 2017-04-07T07:32:42.000Z (almost 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2017-04-07T15:56:51.000Z (almost 9 years ago)
- Last Synced: 2025-10-09T01:13:47.465Z (4 months ago)
- Language: JavaScript
- Size: 472 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# What is it ?
An application shell is the minimal HTML, CSS, and JavaScript powering a user interface. The application shell should:
- load fast
- be cached
- dynamically display content
An application shell is the secret to reliably good performance.
Think of your app's shell like the bundle of code you'd publish to an app store if you were building a native app.
It's the load needed to get off the ground, but might not be the whole story.
It keeps your UI local and pulls in content dynamically through an API.
# Checklist
https://developers.google.com/web/progressive-web-apps/checklist
# Development environment
To test locally:
```
python -m SimpleHTTPServer 8000
```