Echo JS 0.11.0

<~>

pokani comments

pokani 3614 days ago. link 3 points
A quick note to people having problems (osx) with earlier versions; It's much more stable / usable now. Many thanks to developers behind it.
pokani 3616 days ago. link 1 point
It's not just for mp3. All the media formats supported by the client viewer.
pokani 3720 days ago. link 1 point
thanks for the first actual down vote reason. Even though I think differently..
pokani 3720 days ago. link 1 point
as far as I saw from the documentation, you can even run your existing node.js app as a separate thread. And there is no lock etc. thing since there is no context sharing.. I would prefer multiple threads and instances of my solution + multiple processes. instead single process + single thread. In other words, how about clustering both internally and externally ?
pokani 3726 days ago. link 4 points
@egecan: on current node.js design you can't run the 'node.js' code in a separate context! although there are solutions, they are limited to compiling JS on v8 (webworker).. Since the design is not supporting that (lots of static variables in original code! and much more..) you can't do it by developing addin etc.. 

Simply, implementing multithread capabilities 'properly' into node is a big structural change and requires a fork.