notification-wrapper
なにこれ
かんたんWeb Notification APIラッパー。
使い方
$ npm i notification-wrapper
; // exampleconst promise = Notification'foobar'; // optionsconst promise = Notification'hoge' body: 'fugapiyo' icon: 'icon.png' { console; } {} {} {};
options
key | type | default | description |
---|---|---|---|
body | string | "" | 通知の内容。 |
icon | string | アイコン画像のURL | |
onclick | function | 通知のクリック時に実行される。 | |
onclose | function | 通知が閉じたときに実行される。 | |
onerror | function | エラー発生時に実行される。 | |
onshow | function | 通知の表示時に実行される。 |
備考
- 初回呼び出し時にWeb Notification APIの許可を求める。
- タイミングを合わせて通知を出す。