Node.js 10.0.0 или новее версии
npm i push-all
Документация |
---|
const pushAll = require('push-all');
const push = new pushAll({
id: 1,
key: 'Ключ'
});
push.selfSend({
title: 'Тестовое уведомление (PushAllJS)',
text: 'Тестируем.........',
url: 'https://google.com',
ttl: 60,
}).then((result) => {
console.log('Результат успешно получен: ');
console.log(result);
}).catch((err) => {
console.log('Произошла ошибка: ');
console.error(err);
});