Tell me how to send a notification to the Windows notification center using php or node.js or .bat ?
|
1 answer
On PHP, it hardly makes sense to do this, since it will most likely be a server application, and such notifications are not needed on the server.
Here, for example the link to a packet for node js
const notifier = require('node-notifier'); // String notifier.notify('Message'); |
