So I'm going to try and create an updater for my node-webkit application. Before I begin though, I wanted to see what everybody else has been doing so I can get some perspective.
I'm currently thinking of just distributing my unpacked code (node_modules, package.json, source files, and assets) next to a node-webkit executable, and just redressing the "nw.exe /
node-webkit.app" to look like my applications executable. That way, when I have some new code published, I could just unzip it and replace those files without having to mess with the executable. Of course, this means I won't be able to update node-webkit...
Anyways, how do you guys handle this? I appreciate any ideas!