I had fun developing a little team-city build watcher app using node-webkit. However I just started developing another little app and it seems like node-webkit doesn't recognize them as being distinct. Is there a way around this issue?
I have two apps, one with
single-instance set to true, the other to false. The particular issues I am seeing are:
Both apps share the same localStorage instance.
If I launch the application that has single-instance set to true, I cannot launch the other application at all, (It just switches the focus to the first app and terminates).
If I launch the application that has single-instance set to false, I can launch the single-instance:true app with multiple instances.
I tried packaging the apps and running them that way to see if that would help, but I still ran into the same issues.
Really loving node-webkit; thanks for all your help.
Neil