Skip to content

PWA: Features

Charles Dell'Orto edited this page Mar 22, 2021 · 4 revisions

PWA Features

Currently Implemented

  • Geolocation
navigator.geolocation.getCurrentPosition((position) => { ... })
  • Contact Picking
const props = ['name', 'email', 'tel', 'address', 'icon'];
const opts = { multiple: true };
const supported = 'contacts' in navigator && 'ContactsManager' in window;

if (supported) {
    const contacts = await navigator.contacts.select(props, opts);
    console.table(contacts);
}

Planned Implementation

  • Custom Installation
  • App Shortcuts
  • Idle Detection

Clone this wiki locally