Это примерная функция, которая отправляет уведомление с изображением:
function sendPushNotification(req, res) {
const subscriptionId = req.params.id;
const pushSubscription = subscriptions[subscriptionId];
webpush
.sendNotification(
pushSubscription,
JSON.stringify({
title: "your title",
text: "your text",
image: "path/to/image.jpg",
tag: "new...",
url: "/your-url.html"
})
)
.catch(err => {
console.log(err);
});
res.status(202).json({});
}
Это от Lorenzo Spyna, который объясняет, как это сделать в этом уроке , и вы можете увидеть весь код в этот проект из github