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 129 node-notifier issues
Sort by recently updated
recently updated
newest added

import Notifier from 'node-notifier'; Notifier.notify({ message: folder.message, title: folderPath.split('\\').reverse()[0], wait: true, timeout: 10, });

See https://github.com/facebook/jest/pull/11733 and http://gfxmonk.net/2011/04/25/tip-transient-notifications-in-notify-send.html

help wanted

I use node-notifier in windows10, but NotificationCallback output metadata puzzle me。This is my code: const notify = ({title, message}, cb) => { notifier.notify( { title: title || "Unknown title", message:...

`notify-send` on linux while convenient, is slow and doesn't support actions or notification timeout. A better option would be to use `libnotify` directly (with C bindings). Even better would be...

Enhancement
help wanted

Hi, I'm wondering is there any way to push notification on Windows, that will include "hero image" or "inline image" like here (documentation from Microsoft): https://docs.microsoft.com/en-us/windows/apps/design/shell/tiles-and-notifications/adaptive-interactive-toasts?tabs=builder-syntax#hero-image . I found that...

Related discussion: https://github.com/laurent22/joplin/issues/6029 Node-Notifier creates `notify-send` commands with the logical syntax of `notify-send $PARAMS $INPUT` In the event the string for the title/body in `$INPUT` begins with `-`, `notify-send` aborts...

I can get the notifications to fire and can be clicked which opens another window displaying a message. issues after notification timeout and is in the action center: - When...

I've rebuilt the snoretoast binaries to include this change I've submitted upstream: https://github.com/KDE/snoretoast/pull/15 This fixes https://github.com/mikaelbr/node-notifier/issues/332 https://github.com/mikaelbr/node-notifier/issues/326 and possibly others. TL;DR: The pipe never got written to when the notification...

According to my researches (and to my surprise) it looks like this is currently not supported on Linux. Can somebody confirm that this is a limitation on Linux, or is...

I'm using React, and in the App.js file, I just tried `const notifier = require('node-notifier'); notifier.notify('Started RH');` (also tried `import notifier from 'node-notifier` in that first line of course) and...