Re: [nodejs] worry.... of ES6 and Node & errors

2014-09-16 Thread Ep Ga
Rick, copy and paste in Firefox--the ones who are most involve in the spec direction--: function r(){ var i = 0, a = [0,9,8,7,6,5,4,3,2,1]; return (function (){return a.pop();}); } var rr = r(); function y(){ let i = 0, a = [0,9,8,7,6,5,4,3,2,1]; while(a){ yie

Re: [nodejs] Re: worry.... of ES6 and Node & errors

2014-09-15 Thread Ep Ga
Rick Waldron I'm speaking of this: function foo(x){ While(x){ yield x.pop(); } } var bar = Foo(["foo","bar","baz"]); for(;bar;) console.log(bar.next())://baz, bar, foo, undefined I welcome this, the ES5+ spec welcome this! But not this: function* foo(x){ While(x){

Re: [nodejs] Re: Cluster

2014-09-15 Thread Ep Ga
Any ideal on how one and what for to use the ES6 proxy? -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message b

[nodejs] Re: Cluster

2014-09-15 Thread Ep Ga
What is your thoughts about node team including a proxy module? For local use case. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines ---

Re: [nodejs] Re: worry.... of ES6 and Node & errors

2014-09-15 Thread Ep Ga
I'm mostly looking forward to what I consider the extension of ES5, ES5+: let yield --with out the 'function*'-- And a couple of other addition. I am to use native module to build my app, no external module... With these add on for the language, this might make this easier... But no sense on w

[nodejs] Re: util core module

2014-09-15 Thread Ep Ga
Where can I find the current version node source code? Version 0.10.31. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You receive

Re: [nodejs] Cluster

2014-09-15 Thread Ep Ga
I change my mind... Consider a module for proxy use case... -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this messa

[nodejs] util core module

2014-09-14 Thread Ep Ga
https://github.com/joyent/node/blob/master/lib/assert.js http://nodejs.org/api/util.html Why did you take out methods? like isBuffer, and isObject? that make no sense if the core module rely on them, then others would too. I request that you reinsert it in to the util module. -- Job board: ht

[nodejs] worry.... of ES6 and Node & errors

2014-09-13 Thread Ep Ga
I just... I just find it more easier to understand ES5 than Es6... A few of there new addition I can see of use, but for most I'm cloudy on... I just want to be able to always use ES5 with addition to it as ES+... I like the callback hell, and node have module that can be use to break it down in

[nodejs] Awesome work guys/gals!

2014-09-13 Thread Ep Ga
I like how node terminology and functionality is so close to the terminal. Thanks to this, I plan to learn shell commands, so I can have a better understanding of the terminal environment. And for methods and functions I like how you mirror the browser's dom node elements. Espically the on eve

[nodejs] Cluster

2014-09-13 Thread Ep Ga
I have to say I have read a couple of books on node--side note, if anyone know of any good books on node or and the spec language, please post. I don't won't a book on exeternal module, but the core module-- and so far, it all been morbid... Force execution on the child, sending kill signal

[nodejs] Cluster

2014-09-12 Thread Ep Ga
Hey, if cluster just away to defined multiple processes... Than maybe making the interface more smilier to child_process module, for a more easier use case. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules:

[nodejs] Re: worry.... of ES6 and Node & errors

2014-09-10 Thread Ep Ga
I'm more so speaking on syntax style... are we going to have to be force to use the enw syntax style or will there be a choice in the programming style we prefer? like callback function and so on. dark days ahead I see... dark days... -- Job board: http://jobs.nodejs.org/ New group rule

[nodejs] Re: Using Async waterfall in node.js

2014-09-09 Thread Ep Ga
this is more of a discussion... not really that type of mailing list... I would visit freenode irc for such help. They are more likely to help you with this issue. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old

[nodejs] worry.... of ES6 and Node & errors

2014-09-09 Thread Ep Ga
Are you going to force user to use ES6? A lot of dislike ES6 and are for ES5+; staying complaint with our code style and syntax as ES5, with the addition of new feature such as let and const, +. Which does not change the syntax but just add on new statement and operand. Are you going to forc

[nodejs] Pipe take a function

2014-08-18 Thread Ep Ga
And I feel pipe would be so much better if it could except other function that is not native to it but to the ECMAScript spec. I could have done this vie pipe if it was design so. for example: [code] ``` "use strict"; var num; num = 1; process.pipe(function(data){ String(data).split(/\n/).fo

[nodejs] Configure on c9.io: Learning On The Go

2014-08-06 Thread Ep Ga
Is it possible to up node tutorial on c9.io. And go through it there? -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received

[nodejs] NodeScripting

2014-08-06 Thread Ep Ga
NodeScript: All your scripting needs; Client side, Server side, Database side. NodeScripting. Do node have it's own defined database? If not, consider this please! http://www.jsdb.org It's a open source database define for JavaScript. It use E4X to query data between XML and JSON. I talk to