Since you're using EC2, it may help to make your own AMI. The most convenient way I have found is to:
- Spin up a large, powerful machine
- Compile the latest stable Node.js
- Install NPM, then Nave
- Install multiple versions of Node.js using Nave - each with their own NPM.
- Save this as an AMI
I usually install 3-5 different versions depending on the project[1] and each has its own separate modules. Nave will sandbox the different Node versions and their modules.
Then, once you have it set up the way you like it, you can easily spawn more servers from this master copy[2]. You could technically compile every Node.js version if you wanted to but I don't find this necessary.
[1] For example, the Braintree module currently requires Node.js@0.4.7 while the main codebase is on Node.js@0.4.1.
[2] As long as you stay consistent with architecture, if you compile all of this on a m1.xlarge, you can't use the image on m1.small's because xl is 64-bit and small is 32-bit.