문제

I wanted to create a complete background running app that only shows up in the system-tray and doesn't have any "window" as such. I tried setting the "window" attribute to false, but that doesn't work. Is there any way to create a completely background daemon-style application using node-webkit?

도움이 되었습니까?

해결책 2

Simply use this package.json

{
  "window": {
    "show": false
  }
}

다른 팁

Additionally place a tray to truly reflect a background app:

https://github.com/rogerwang/node-webkit/wiki/Tray

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top