¿Es posible crear una aplicación en segundo plano usando node-webkit?
Frecuentes
Visto 3,477 veces
4
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 Respuestas
6
Additionally place a tray
to truly reflect a background app:
Respondido el 14 de diciembre de 13 a las 10:12
5
Simply use this package.json
{
"window": {
"show": false
}
}
Respondido el 06 de diciembre de 13 a las 11:12
No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas background-process node-webkit tray or haz tu propia pregunta.
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