Created
January 2, 2023 07:58
-
-
Save LukaszWiktor/80d2423072a7b88ec14d7688ff9b7433 to your computer and use it in GitHub Desktop.
Display a system notification in macOS from a Node.js script.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { exec } = require("child_process"); | |
exec(`osascript -e 'display notification "Hello World!"'`, (error, stdout, stderr) => { | |
if (error) { | |
console.log(`error: ${error.message}`); | |
return; | |
} | |
if (stderr) { | |
console.log(`stderr: ${stderr}`); | |
return; | |
} | |
console.log(`stdout: ${stdout}`); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment