18

这是我在 node.js 应用程序中需要的:

  • 系统托盘图标
  • 在应用程序工作期间更改此图标
  • 点击图标后的菜单
  • 创建带有登录/密码和确认按钮字段的窗口

这是我发现的:

你有什么建议?我需要一些可靠易于安装和尽可能跨系统的东西。

//编辑

自 11 月 6 日起,Appjs 具有基本的托盘图标支持。

4

3 回答 3

11

对于登陆这里的任何其他人,请查看https://github.com/rogerwang/node-webkit - 一个很棒的包,允许您使用 JavaScript 等您喜欢的工具创建桌面应用程序,支持本机 shell 访问、托盘图标还有更多。

更新:该应用程序已移至NWjs.io,但它是同样出色的概念。

于 2013-11-18T04:38:58.503 回答
3

看看 Node-QT ( https://github.com/arturadib/node-qt ) 也许会有所帮助。

于 2013-02-19T15:47:03.937 回答
3

我在 Linux 上使用过系统托盘。承诺也可以在 macOS 和 Windows 上运行。但我没有测试它。

来自官方文档的示例:

import SysTray from 'systray'

const systray = new SysTray({
    menu: {
        // you should using .png icon in macOS/Linux, but .ico format in windows
        icon: "<base64 image string>",
        title: "标题",
        tooltip: "Tips",
        items: [{
            title: "aa",
            tooltip: "bb",
            // checked is implement by plain text in linux
            checked: true,
            enabled: true
        }, {
            title: "aa2",
            tooltip: "bb",
            checked: false,
            enabled: true
        }, {
            title: "Exit",
            tooltip: "bb",
            checked: false,
            enabled: true
        }]
    },
    debug: false,
    copyDir: true, // copy go tray binary to outside directory, useful for packing tool like pkg.
})
 
systray.onClick(action => {
    if (action.seq_id === 0) {
        systray.sendAction({
            type: 'update-item',
            item: {
            ...action.item,
            checked: !action.item.checked,
            },
            seq_id: action.seq_id,
        })
    } else if (action.seq_id === 1) {
        // open the url
        console.log('open the url', action)
    } else if (action.seq_id === 2) {
        systray.kill()
    }
})

它不提供

创建带有登录/密码和确认按钮字段的窗口

但在我看来,这项任务是一项单独的任务。因此,此答案对于只需要系统托盘图标的其他人可能会有所帮助。

于 2020-10-12T21:04:11.897 回答