[nodejs] Remote simulation?

2013-03-12 Thread simo
At client side, I will have a physics simulation, user will create the simulation arguments using HTML5 based interactive view. The simulation arguments will be sent to server side, where child nodejs process will calculate the results and send back to client. The simulation results are emitte

[nodejs] Re: Remote simulation?

2013-03-13 Thread simo
front end as HTML5, do you think that your project is similar? : ) Thanks again for sharing! On Tuesday, March 12, 2013 9:00:17 AM UTC+2, simo wrote: > > At client side, I will have a physics simulation, user will create the > simulation arguments using HTML5 based interactive view

[nodejs] Re: Remote simulation?

2013-03-13 Thread simo
I've noticed that you didn't use any module .. ex: socket.io, didn't you need them? Can you please enrich my question at stackoverflow here: http://stackoverflow.com/questions/15341361/remote-simulation-with-nodejs Regards, Samir On Tuesday, March 12, 2013 9:00:17 AM UTC+2, sim

[nodejs] process spawn?

2013-03-24 Thread simo
Hello, Can any please point me to resources about process spawning examples in node? tutorials, books? any useful resource that explains in details and gives examples about spawning processes? Thanks very much simo -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https

[nodejs] What's the limit of spawning child_processes?

2013-03-24 Thread simo
I have to serve a calculation via algorithm, I've been advised to use a child process per each opened socket, what I am about to do is something like that: var spawn = require('child_process').spawn;var child = spawn('node', ['algorithem.js']); I know how to send argument to the algorithm pr