Page 6 of 6

Re: Debugger for Z-Way JavaScript

Posted: 01 Oct 2015 05:36
by lifeisfunny
Since z-way and node both using the v8 javascript engine , Will there be two javascript v8 running when you using node debugger ? If not , How so ? Does that means i can run nw.js for my interface on the same machines without worry about 2 javascript engine running ???

Re: Debugger for Z-Way JavaScript

Posted: 02 Oct 2015 16:38
by pofs
lifeisfunny wrote:Since z-way and node both using the v8 javascript engine , Will there be two javascript v8 running when you using node debugger ? If not , How so ? Does that means i can run nw.js for my interface on the same machines without worry about 2 javascript engine running ???
Yes, there will be 2 v8 running in different processes (one in node process, another in z-way). You can even run several instances of v8 in the same process (they still will be completely isolated from each other, while sharing codebase and libraries).
Why would you think you cannot run multiple v8 instances simultaneously?