node-notifier icon indicating copy to clipboard operation
node-notifier copied to clipboard

A Node.js module for sending notifications on native Mac, Windows and Linux (or Growl as fallback)

Results 123 node-notifier issues
Sort by recently updated
recently updated
newest added

OS: MacOS 12.3.1 Node: v17.7.1 Is there a setting to make the notification persist? My notification always appear as "Banners" even though I've selected "Alerts" in the OS settings: ![Screen...

The following example generates "TypeError: handle.setSimultaneousAccepts is not a function" on Windows: ```js const cluster = require('cluster'); const notifier = require('node-notifier'); if(cluster.isPrimary) { cluster.fork(); notifier.notify('OK'); // this works } else...

I simply add my nodejs app to to my Windows start folder. so what is my appID ? I dont want the notify to say SnoreToast. thanks

Hi guys! I was trying to make notifications with buttons on windows 10 (v1909) using this code: ` notifier.notify( { title: 'title', message: 'message', icon: paths.appIconPath, actions: ['Close', 'Settings'], });`...

Hey! I'm using wsl2 Ubuntu and integrated terminal with vscode and windows 10. I don't get any errors but it seems I don't get any notifications? I couldn't find and...

I'm trying to get a sticky notification by setting a really high timeout, see below, not matter if I set the `wait` prop or any number in the `timeout` the...

How to disable the default "Show" option? My current options are: ``` open: undefined, closeLabel: undefined, dropdownLabel: undefined, actions: ["A", "B", "C"], ``` ![image](https://user-images.githubusercontent.com/347387/109389318-d966b780-78ea-11eb-9fe1-0527ac35327a.png) Apparently, the "Show" option just focuses...

Trying to send a notification on an M1 MacBook produces an error: ``` Error: spawn Unknown system error -86 at ChildProcess.spawn (node:internal/child_process:416:11) at spawn (node:child_process:619:9) at Object.execFile (node:child_process:262:17) at Object.module.exports.fileCommandJson...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

I'm use a nodeJS server with this package. Now my icon works with now issues when starting the server with node, however with PKG it seems the icons fail to...