NodeJS SDK for https://engagespot.co/
import { Engagespot } from 'engagespot-node';
const client = new Engagespot('API_KEY', 'API_SECRET');
client
.createNotification('Hello world!')
.setMessage('So long!')
.setIcon('https://example.com/icon.svg')
.setUrl('https://example.com')
.setCategory('welcome')
.addRecipient('world@example.com')
.send();