Re: [nodejs] Why `fs.exists` has signature `(exists)` instead of `(err, exists)` ?

2012-08-24 Thread Dennis Kehrig
Hey group, Bruno Jouhier, 2012-08-23 22:45: > fs: stability 3 (Stable) => Backwards compatibility is guaranteed. How about this: if (callback.length > 1) { callback(err, res); } else { callback(res); } Would that be okay? Might be an issue if the callback is declared without parameters

Re: [nodejs] Re: Node version 0.9.2 (Unstable)

2012-09-18 Thread Dennis Kehrig
> > Is v1.0 expected this year? Sounds like it's getting close. =D > That, or 0.10.0 ;) -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "no

[nodejs] Re: What Editor / OS / Dev enviroment do you use?

2012-09-22 Thread Dennis Kehrig
Windows XP with SciTE extended by Scintillua for CoffeeScript highlighting. On Thursday, September 20, 2012 6:42:27 PM UTC+2, Andrew Mclagan wrote: > > Im switching to Ubuntu after struggling with windows, i will replace > no

[nodejs] Re: npm and NodeJS versions: got rid of package hell, now have node version hell?

2012-10-22 Thread Dennis Kehrig
On Sunday, October 21, 2012 9:16:43 PM UTC+2, ack wrote: > spawns the right version of node, passing it the original app script name > and commandline parameters. The parent node process can then just exit. > I tried to write a script that restarts itself when its code was modified (like what