Is it possible to create a background application using node-webkit?

I wanted to create a complete background application that appears only in the system tray and does not have any “window” as such. I tried setting the "window" attribute to false, but this does not work. Is there a way to create a fully daemon-style background application using node -webkit?

+4
source share
2 answers

Just use this package.json

{
  "window": {
    "show": false
  }
}
+5
source

Also, post trayto really reflect the background application:

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

+6
source

All Articles