This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Desktop 上に トースト通知を表示させたい #28
Comments
https://developer.mozilla.org/ja/docs/WebAPI/Using_Web_Notifications |
特に理由が無ければ標準でやっていく方向で |
了解しました。 |
(async () => {
if (window.Notification != null) {
if(Notification.permission === "default") {
await Notification.requestPermission();
}
if(Notification.permission === "granted") {
new Notification("hoge");
}
}
})(); こんな感じで、通知の権限要求から発行まで簡単に出来そう |
通知種別をはっきりさせたいのだけれども~ |
通知の種類はストリームのイベント名の 例: イベント名に「notification-」と付ける必要があるかどうかなど、streamTypeの命名については、十分に検討していく必要があると思うけどね |
通知のコードがどうなるのかぼくは分からないので、それくらいしか言えないなあ |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
#タイムラインをもっと監視できるようにしたい所存。。。
どうでしょうか?
参考 : node-notifier http://co.bsnws.net/article/123
The text was updated successfully, but these errors were encountered: