Thanks for all your work, absolutely fantastic.
I've been playing around with node-webkit. Also the different demos work, I always get an ERROR:renderer_main.cc(203)] Running without renderer sandbox
- OSX 10.8.3
- node-webkit version 0.5 and 0.5.1
note, I don't have much experience with angularJS. What I did it's simply add an IFFE function to call nw.gui at the bottom of the Todo's index.html page.
<script>
(function(){
var gui = require('nw.gui');
var win = gui.Window.get();
gui.Window.get().menu = new gui.Menu({ type: 'menubar' });
win.title = 'todomvc';
win.show();
// win.showDevTools();
})();
</script>
It works at the begenning, but very quickly, after adding and deleting some todo tasks, the App and the DevTools become unresponsive. Also I understand angularJS might not be the best tool for node-webkit, do you have any idea what is happening?
Many thanks