デスクトップ通知のためのnode.jsライブラリ、node-notifierのガイドです。
クロスプラットフォームであり、Windows 8/10、macOS、Linuxなどで動作します。
以下はGithubです。
以下はサンプルコードです。
以下ファイルをnode-notifier_dev.js
などとして保存します。
const notifier = require('node-notifier');
notifier.notify({
title: 'My notification',
message: 'Hello, there!',
sound: true,
wait: true
});
実行するためには、node.jsをインストールします。
# node.js [nvm-sh/nvm](https://github.com/nvm-sh/nvm)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
bash
nvm install 13
node -v
node.jsプログラムを実行します。
node node-notifier_dev.js