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

The title says it all: ```js notifier.notify({ title: 'foo', msg: 'bar', id: 1, }); // No: notifier.notify({ remove: 1 }); // Yes: notifier.notify({ close: 1 }); ``` `snoreToast` uses `-close`,...

Hi! 👋 Firstly, thanks for your work on this project! 🙂 I found the need to be able to pass the `application` parameter, so notifications in action center will launch...

It seems like it's not currently possible to get replies to notifications on Ubuntu at the moment. It would be awesome if I could! Same for buttons on Linux notifs....

So I have the code below and this works perfectly when I call it from Node via `node index.js` but once I package it using `pkg` and move it to...

Hello everyone, I have the following problem. When I set the 'appName' attribute, my action buttons are no longer displayed and I get an error when I click the notification....

* You need to create a shortcut to your app in the start menu, and it needs to include the following: * `appUserModelId` [Application User Model ID](https://learn.microsoft.com/en-us/windows/configuration/find-the-application-user-model-id-of-an-installed-app) * `toastActivatorClsid` Value...

I've been trying to launch notifications by using `notify` and `new NotificationCenter` and have always the same error : > Error: Couldn't connect to growl (might be used as a...

This PR drops the uuid package from project dependencies and substitutes it with the native [crypto module](https://nodejs.org/docs/latest-v14.x/api/crypto.html) from Node.js.

Fixes #361 This was done by recompiling ```terminal-notifier``` into a universal binary so it can run on both Intel and Apple Silicon Macs. The latest macOS SDK at the time...

Previously the GitHub Actions workflow would run the same tests (5 tests) with node version 12. The GitHub Actions workflow now uses all the node versions specified in ```matrix.node-version```. Also...