ERROR:renderer_main.cc(203)] Running without renderer sandbox

3 views
Skip to first unread message

jollyjumper

unread,
Apr 27, 2013, 7:56:00 PM4/27/13
to node-...@googlegroups.com
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

This is probably not related. For testing purpose under OSX 10.8.3, I've also, integrate in node-webkit the angularJS Todo apps from https://github.com/addyosmani/todomvc/tree/gh-pages/architecture-examples/angularjs 
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

Roger WANG

unread,
Apr 27, 2013, 8:22:01 PM4/27/13
to jollyjumper, node-...@googlegroups.com
jollyjumper <jeanluc...@gmail.com> writes:

> 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
>
> This is probably not related.

Right. It's not related.

> It works at the begenning, but very quickly, after adding and deleting
> some todo tasks, the App and the DevTools become unresponsive.

It could be a know bug:
https://github.com/rogerwang/node-webkit/issues/476

There is a workaround '--disable-gpu'. Does it work for you?

> Also I understand angularJS might not be the best tool for
> node-webkit, do you have any idea what is happening?

angularJS should be OK with node-webkit.
--
Roger WANG Intel Open Source Technology Center

jollyjumper

unread,
Apr 28, 2013, 12:31:22 AM4/28/13
to node-...@googlegroups.com, jollyjumper
Thanks for your quick feedback.
The  '--disable-gpu' workaround dosen't solve the issue.
So, I've uploaded the angularJS todo demo. https://www.sugarsync.com/pf/D6099134_8294221_6053788

jollyjumper

unread,
May 1, 2013, 9:16:17 PM5/1/13
to node-...@googlegroups.com, jollyjumper
After some more investigations, supressing all the css transition rules resolve the issue.
Note, you have to supress both rules.

-webkit-transition: color 0.4s;
transition: color 0.4s;
Reply all
Reply to author
Forward
0 new messages