gpt4 book ai didi

node.js - 我如何发送 Electron 通知?

转载 作者:搜寻专家 更新时间:2023-10-31 23:29:25 25 4
gpt4 key购买 nike

为桌面应用程序使用 electron/node.js。试图弄清楚如何在桌面上生成通知。它是否内置于 Electron API 中?

最佳答案

node-notifier 更容易发送本地通知。 Node notifier 一个 Node.js 模块,用于在 native Mac、Windows 和 Linux 上发送通知(或 Growl 作为后备)。

Github

安装:

npm install --save node-notifier

示例:

const notifier = require('node-notifier');
// String
notifier.notify('Message');

// Object
notifier.notify({
title: 'My notification',
message: 'Hello, there!'
});

通知:

enter image description here

关于node.js - 我如何发送 Electron 通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42851198/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com