Re: [nodejs] Re: Build fail - windows 7 - npm install mogodb

2013-09-01 Thread Glenn Block
Hi Roger It should still work as kerberos is an optional dependency: https://github.com/mongodb/node-mongodb-native/blob/master/package.json#L79. Admittedly the npm output doesn't make it clear that the module can still function mongodb because it's an optional dependency. As Jeroen said you

Re: [nodejs] Re: Build fail - windows 7 - npm install mogodb

2013-09-01 Thread Roger Tremblay
Hey Gelnn, Thanks a bunch for the feedback. I've been developing with mongodb as is and it's been working fine, was just trying to get everything built as it should be but this works for what I need. Cheers and thanks again :) Roger On Sun, Sep 1, 2013 at 2:42 PM, Glenn Block

Re: [nodejs] Downside to not wrapping sync callbacks in nextTick()?

2013-09-01 Thread Bryan Donovan
Right, I get that. On Sep 1, 2013, at 8:59 AM, dhruvbird dhruvb...@gmail.com wrote: @Bryan: Be careful when using the EventEmitter like pattern because: var e = new ObjectDerivingFromEventEmitter() e.makeRequest(request_parameters); e.on('error', function() { }); Now, if makeRequest()