function shareContent() {
if (navigator.share) {
navigator.share({
title: 'My PWA',
text: 'Check out my Progressive Web App!',
url: window.location.href
}).then(() => {
console.log('Content shared successfully!');
}).catch(error => {
console.error('Error sharing content:', error);
});
} else {
console.log('Web Share API is not supported in this browser.');
}
}
shareContent();
To test your PWA, you need to serve it over HTTPS. You can use a local development server with HTTPS support, such as http-server: