[nodejs] Announcement: Groove Basin 1.1.0 Released!

2014-06-21 Thread Andrew Kelley
Groove Basin is a music player server written in Node.js that ships with a web-based client. Screenshot http://superjoe.s3.amazonaws.com/blog-files/raspberry-pi-music-player-server/groovebasin-screenshot.png | Live Demo Version http://demo.groovebasin.com/ | GitHub Page

[nodejs] Is it possible yet to use cluster and UDP on Windows environment.

2014-06-21 Thread Ket
Base on my google research, something like this is working fine on Linux environment: http://stackoverflow.com/questions/16724216/node-js-0-10-7-cluster-support-for-udp-dgram But I work mostly on Windows 7 and 8 before upload things to the Linux server. Is there any hack available to get it

[nodejs] (gulp) Use global package when local package dependency is same?

2014-06-21 Thread Jari Pennanen
Hello, I haven't used nodejs a lot, but first thing I noticed when using gulp is that it requires local installation for all projects. I understand, it's good to have same version of gulp as dependency for project, so that other people using gulp on the project use same version. But if my

Re: [nodejs] (gulp) Use global package when local package dependency is same?

2014-06-21 Thread Gary Katsevman
I believe the global install is only so that you have the gulp cli command available. All the actual tasks and what not are installed locally and the global gulp just finds the appropriate local tasks and runs them. ​ Gary Katsevman gkatsev.com On Fri, Jun 20, 2014 at 6:49 PM, Jari Pennanen

Re: [nodejs] Is it possible yet to use cluster and UDP on Windows environment.

2014-06-21 Thread Ben Noordhuis
On Sat, Jun 21, 2014 at 5:32 AM, Ket kettin...@gmail.com wrote: Base on my google research, something like this is working fine on Linux environment: http://stackoverflow.com/questions/16724216/node-js-0-10-7-cluster-support-for-udp-dgram But I work mostly on Windows 7 and 8 before upload

Re: [nodejs] Is it possible yet to use cluster and UDP on Windows environment.

2014-06-21 Thread Denys Khanzhyiev
BTW I have discovered that named pipes are working in Node under Windows and give bigger transfer rates than tcp. Thought haven't tried it with cluster. 2014-06-21 12:25 GMT+03:00 Ben Noordhuis i...@bnoordhuis.nl: On Sat, Jun 21, 2014 at 5:32 AM, Ket kettin...@gmail.com wrote: Base on my

Re: [nodejs] Is it possible yet to use cluster and UDP on Windows environment.

2014-06-21 Thread Denys Khanzhyiev
UDP does not guarantee transmition of data. I personally experience data loss starting from specific Data rate on UDP broadcast on loopback inetrface unde Win7 x64. And this is pretty low number - about 8 Mbit for me. 2014-06-21 6:32 GMT+03:00 Ket kettin...@gmail.com: Base on my google

Re: [nodejs] Is it possible yet to use cluster and UDP on Windows environment.

2014-06-21 Thread Matt
That's just shockingly terrible. I've experienced plenty of UDP issues in my career (believe me debugging UDP issues is one of the harder things you'll ever do), but dropping packets on loopback at 8Mbit is appalling. On Sat, Jun 21, 2014 at 3:17 PM, Denys Khanzhyiev xden...@gmail.com wrote:

[nodejs] node.js API documentation clean up

2014-06-21 Thread 'Norbert Fuhs' via nodejs
I don't think the node.js GitHub wiki and API reference documention are: 1. beginner friendly 2. easy to read 3. explain exactly what the modules does and for what it is for Is there an up to date list of undocumented methods and properties in the node.js API reference documentation? Most

[nodejs] Re: Profiling Node.js 2014

2014-06-21 Thread Samuel Gómez
Hi Trevor, Thanks a lot. It works. I'm trying to profile synchronous and asynchronous code. The flame graph for synchronous code is very clear because you can see all the stack of functions, just as in the code. This makes trivial to, from the graph, finding the involved code. However,