Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Project Fugu: Progressive Web Apps, Superpowered

Project Fugu: Progressive Web Apps, Superpowered

Progressive Web Apps are a great cross-platform application model, even if somewhat restricted in use – until now, that is. Project Fugu is an initiative led by Google, Microsoft, and Intel. Their goal: a more capable web. Clipboard and file system access are only a few examples of Fugu’s powerful APIs. In this session, Christian Liebel, PWA specialist at Thinktecture, shows you the objective of Project Fugu and demonstrates some of its APIs. Are you ready to superpower your Progressive Web App?

Christian Liebel

March 03, 2022
Tweet

More Decks by Christian Liebel

Other Decks in Programming

Transcript

  1. ✅ Offline capability ✅ Push messages ✅ Webcam/microphone access File

    System Access Raw Clipboard Access Local Font Access Project Fugu Progressive Web Apps, Superpowered
  2. Cross-Vendor Initiative Led By… Project Fugu Progressive Web Apps, Superpowered

    Project Fugu – A More Capable Web »Let’s bring the web back – API by API« Thomas Steiner, Google
  3. Project Fugu Progressive Web Apps, Superpowered Project Fugu Browser navigator.share({

    url: 'http://example.com' }); ShareIntent DataTransferManager … NSSharingServicePicker
  4. Progressive Enhancement if ('share' in navigator) { navigator.share({ text: 'Hi!'

    }); } else { // Fallback method } Project Fugu Progressive Web Apps, Superpowered Project Fugu