Use native system notifications for MacOS, Win & Linux. No bullshit & no Growl.
const notify = require('native-notifier');
notify({
app: 'Loggy',
icon: `${__dirname}/loggy.png`,
message: 'TypeError: stack is shown',
title: 'Loggy error'
});
MIT