¿Es posible crear una aplicación en segundo plano usando node-webkit?

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?

preguntado el 27 de noviembre de 13 a las 07:11

2 Respuestas

Additionally place a tray to truly reflect a background app:

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

Respondido el 14 de diciembre de 13 a las 10:12

Simply use this package.json

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

Respondido el 06 de diciembre de 13 a las 11:12

This doesn't appear to work anymore. Has it been depreciated? - Tauriano

@Taurian - Not deprecated. Maybe you're just doing something wrong, like not opening your window with nw.gui perhaps? - jamesmortensen

Can you elaborate this> - majidarif

does not work, a hide window canot render content, example: youtube in background. - e-info128

No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas or haz tu propia pregunta.