How to use the node-notifier/notifiers/toaster function in node-notifier

To help you get started, we’ve selected a few node-notifier examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github streamlink / streamlink-twitch-gui / src / app / utils / notification / NotificationProviderToast.js View on Github external
function NotificationProviderToast() {
	let customPath = resolvePath( "%NWJSAPPPATH%", "bin", "win32", "toast.exe" );

	this.provider = new Toaster({
		withFallback: false,
		customPath
	});
}