Hi, I have a module (node-rack) to abstract the cluster module. It was built for 0.6 and I want to be able to support 0.8 too but not dropping 0.6 support. I noticed for example that `kill()` was renamed to `destroy()`. I think this can be easy to detect but what about events? `death`event was changed to `exit`.
Is there a way to know what events an object supports or should I just check the node version (using process.version.node) and do my changes from there? I would prefer the first option as it's similar to feature detection. This way I would just check for available methods and events and use the preferred (and available) ones. -- Diogo Resende -- 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 "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
