This commit is contained in:
RainSun 2019-10-27 19:01:38 +08:00
parent 3157e66ad1
commit fba170d342
4 changed files with 49 additions and 1 deletions

View File

@ -0,0 +1,25 @@
# win系统弹窗
## install
```cmd
npm install --save node-notifier
```
## how2use
```js
const WindowsToaster = require('node-notifier').WindowsToaster // 弹框通知库
let notifier = new WindowsToaster({ // 配置SnoreToast
withFallback: false,
customPath: './snoretoast.exe'
});
notifier.notify({
title: '这是标题',
message: '这是内容!!',
icon: './cherry1.png'
},
function (error, response) {
console.log(response)
});
```

Binary file not shown.

View File

@ -11,4 +11,8 @@
* `https://www.npmjs.com/package/puppeteer`
* `https://devdocs.io`
* `https://devdocs.io`
* `https://github.com/mikaelbr/node-notifier`
* `https://www.jianshu.com/p/077c9d5928f1`

View File

@ -10,6 +10,25 @@
* git常用命令总结
[linkToMd](./Miscellaneous/git.md)
![js](https://img.shields.io/badge/language-js-orange.svg)
* img2string
[linkToHtml](./Miscellaneous/img2string.html)
![js](https://img.shields.io/badge/language-js-orange.svg)
* win10系统级别弹窗
[linkToMd](./Miscellaneous/SnoreToast.md)
![toDoList](https://img.shields.io/badge/content-UrlList-red.svg)
* 网址收藏
[linkToMd](./Miscellaneous/todo.md)
![Vue](https://img.shields.io/badge/language-js-orange.svg)
* Vue经验积累
[linkToMd](./Miscellaneous/vue.md)
![css](https://img.shields.io/badge/language-css-blue.svg)
* teansformMatrix
[linkToMd](./Miscellaneous/teansformMatrix.md)
---