Re: [nodejs] Re: API changes from 0.6 to 0.8

2012-06-23 Thread Tim Dickinson
The goal is to have a module compatible with both 0.6 and 0.8, not one for each version. At some point you will have to. No one writes code for version 0.4, the same should now be true for version 0.6. You should encourage the uses of new build's of node. The cluster module was brand new

Re: [nodejs] Re: API changes from 0.6 to 0.8

2012-06-22 Thread Diogo Resende
The goal is to have a module compatible with both 0.6 and 0.8, not one for each version. -- Diogo Resende On Friday, June 22, 2012 at 2:37 , Dominic Tarr wrote: you can set what version of node a module is for in the package.json engines: { node : 0.6 } for example. this does mean

[nodejs] Re: API changes from 0.6 to 0.8

2012-06-21 Thread Roly Fentanes
I'm in a similar situation with a module I wrote. And I think I'll just write a note in the readme specifying which version should be installed for node v0.6.x. On Thursday, June 21, 2012 2:35:15 AM UTC-7, Diogo Resende wrote: Hi, I have a module (node-rack) to abstract the cluster module.