All Projects → TalAter → Upup

TalAter / Upup

Licence: mit
✈️ Easily create sites that work offline as well as online

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Upup

Ember Service Worker
A pluggable approach to Service Workers for Ember.js
Stars: ✭ 227 (-95.25%)
Mutual labels:  hacktoberfest, offline-first, offline, pwa, progressive-web-app, service-worker
Jfa Pwa Toolkit
⚡️ PWA Features to Any Website (very Fast & Easy)
Stars: ✭ 245 (-94.87%)
Mutual labels:  offline-first, offline, pwa, progressive-web-app, service-worker
Offline Plugin
Offline plugin (ServiceWorker, AppCache) for webpack (https://webpack.js.org/)
Stars: ✭ 4,444 (-6.97%)
Mutual labels:  offline-first, offline, pwa, progressive-web-app, service-worker
Android Pwa Wrapper
Android Wrapper to create native Android Apps from offline-capable Progressive Web Apps
Stars: ✭ 265 (-94.45%)
Mutual labels:  offline-first, offline, pwa, progressive-web-app, service-worker
Beer
The source code for the Progressive Beer app!
Stars: ✭ 73 (-98.47%)
Mutual labels:  offline-first, pwa, progressive-web-app, service-worker
Vue Wordpress Pwa
An offline-first SPA using Vue.js, the WordPress REST API and Progressive Web Apps
Stars: ✭ 665 (-86.08%)
Mutual labels:  offline, pwa, progressive-web-app, service-worker
ambianic-ui
PWA for managing Ambianic Edge devices (smart cameras).
Stars: ✭ 32 (-99.33%)
Mutual labels:  pwa, offline, progressive-web-app, offline-first
Sw Precache
Service Worker Precache is a module for generating a service worker that precaches resources. It integrates with your build process. Once configured, it detects all your static resources (HTML, JavaScript, CSS, images, etc.) and generates a hash of each file's contents. Information about each file's URL and versioned hash are stored in the generated service worker file, along with logic to serve those files cache-first, and automatically keep those files up to date when changes are detected in subsequent builds.
Stars: ✭ 5,276 (+10.45%)
Mutual labels:  offline-first, offline, progressive-web-app, service-worker
jekyll-pwa-workbox
A Jekyll plugin using Workbox to make your PWA / Website available offline.
Stars: ✭ 22 (-99.54%)
Mutual labels:  pwa, service-worker, progressive-web-app, offline-first
React Most Wanted
React starter kit with "Most Wanted" application features
Stars: ✭ 1,867 (-60.92%)
Mutual labels:  hacktoberfest, offline, pwa, progressive-web-app
Ios Pwa Wrapper
An iOS Wrapper application to create a native iOS App from an offline-capable Progressive Web App.
Stars: ✭ 268 (-94.39%)
Mutual labels:  offline-first, offline, pwa, progressive-web-app
Monitaure
🔔 A server uptime monitoring progressive web application - NO LONGER MAINTAINED
Stars: ✭ 135 (-97.17%)
Mutual labels:  offline-first, pwa, progressive-web-app, service-worker
Super Progressive Web Apps
SuperPWA helps to convert your WordPress website into Progressive Web Apps instantly. PWA (Progressive Web Apps) demo at : https://superpwa.com and Plugin :
Stars: ✭ 304 (-93.64%)
Mutual labels:  offline, pwa, progressive-web-app, service-worker
Pwa Book Cn
第一本 PWA 中文书
Stars: ✭ 3,498 (-26.77%)
Mutual labels:  pwa, progressive-web-app, service-worker
Vue Firebase Auth Vuex
Vue Firebase🔥 Authentication with Vuex
Stars: ✭ 248 (-94.81%)
Mutual labels:  hacktoberfest, pwa, progressive-web-app
Sw Toolbox
A collection of tools for service workers
Stars: ✭ 3,649 (-23.61%)
Mutual labels:  offline-first, progressive-web-app, service-worker
Preact Starter
Webpack3 boilerplate for building SPA / PWA / offline front-end apps with Preact
Stars: ✭ 384 (-91.96%)
Mutual labels:  offline, pwa, progressive-web-app
affilicats
🐈 Progressive Web App demo that showcases flaky network resilience measures (📶 or 🚫📶).
Stars: ✭ 65 (-98.64%)
Mutual labels:  service-worker, progressive-web-app, offline-first
wordpress
Free PWA & SPA for Wordpress & Woocommerce
Stars: ✭ 103 (-97.84%)
Mutual labels:  pwa, offline, progressive-web-app
Emberclear
Encrypted Chat. No History. No Logs.
Stars: ✭ 157 (-96.71%)
Mutual labels:  hacktoberfest, pwa, progressive-web-app

UpUp - Kickstarting the Offline First Revolution

Offline First with UpUp

UpUp is a tiny JavaScript library that makes sure your users can always access your site's content, even when they're on a plane, in an elevator, or 20,000 leagues under the sea.

Mobile-First has become the de-facto standard for building modern sites. But in a world where everyone is mobile, an always-on connection isn't something we can rely on. It's time to start thinking Offline First.

With UpUp you control the content your users see, even when they are offline. And you can do it with just a single JavaScript command.

Demo & Tutorial

The easiest path to understanding is to see UpUp in action and try a quick tutorial.

Hello World

Getting started with UpUp is as easy as adding two JavaScript files to your site, upup.min.js & upup.sw.min.js, and defining the content you want your users to see when they are offline.

For example:

<script src="/upup.min.js"></script>
<script>
UpUp.start({
  'content-url': 'offline.html',
  'assets': ['/img/logo.png', '/css/style.css', 'headlines.json']
});
</script>

Now every time your users return to your site and their connection is down, they will see the contents of offline.html instead of an error.

Check out some live demos and a full tutorial. Once you're up and rolling, you can read the full API Docs.

HTTPS Requirement

UpUp requires a secure connection to your site (this is a requirement of service workers, the technology at the heart of UpUp). So make sure your users visit your site over HTTPS (an SSL certificate is free with Let’s Encrypt or via CloudFlare).

Browser Support

UpUp works in any browser that supports service workers. Currently this means:

  • Chrome 40+
  • Opera 27+
  • Firefox 41+

If your users are using a different or older browser, they will simply be unaffected by UpUp. Nothing will break, and they simply won't notice anything different.

Technical Documentation and API

Docs and full API reference

Author

Tal Ater: @TalAter

License

Licensed under MIT.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].