Is there a way to install node.js and npm in an unattended way (with a shell script) without building it from source? I have an array of servers that scales automatically based on server load, but downloading the Node.js source and building it using make takes like 10 minutes.

Thanks!

edit: I tried copying over the binaries, but that resulted in an error that the binary was corrupted. And yes, they are all EC2 m1.small instances.

link|improve this question

50% accept rate
feedback

4 Answers

up vote 1 down vote accepted

Assuming your script is something like:

git clone https://github.com/joyent/node.git
cd node
./configure
make

Can you not just use the results from here on each new instance, and continue with:

sudo make install
curl http://npmjs.org/install.sh | sudo sh
link|improve this answer
I did that, put the contents into a tarball, and instructed the shell script to download this file, untar it, and then continue, but then I was getting an error that it couldn't execute the file. Let me give it another shot. – Mark Bao Jun 18 '11 at 18:03
Ah, it worked. Thanks! – Mark Bao Jun 20 '11 at 6:25
Great! Any idea why you were getting the error previously? – Mr E Jun 20 '11 at 8:54
Installing NPM this way gives this prompt: "This script will find and eliminate any shims, symbolic links, and other cruft that was installed by npm 0.x. Is this OK? enter 'yes' or 'no'" – Rico Sta. Cruz Aug 22 '11 at 4:16
Is there a way to get around entering the prompts? – Frank LoVecchio Aug 26 '11 at 21:05
feedback

Since you're using EC2, it may help to make your own AMI. The most convenient way I have found is to:

  1. Spin up a large, powerful machine
  2. Compile the latest stable Node.js
  3. Install NPM, then Nave
  4. Install multiple versions of Node.js using Nave - each with their own NPM.
  5. 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.

link|improve this answer
feedback

I'm assuming the servers are all the same platform/kernel, speaking from a redhat/centos enviornment... why not build it on one server then package the binaries into an RPM? You can then use that across your other servers. I'm assuming it's the same for deb packages if you are in a Debian enviornment.

link|improve this answer
feedback

There is also a deb package if you are using Ubuntu (might work for other Debian or Ubuntu based distros as well):

http://blog.jetienne.com/2010/08/nodejs-deb-package-on-ubuntu-repository.html

sudo add-apt-repository ppa:jerome-etienne/neoip && 
     sudo apt-get update && 
     sudo apt-get install nodejs

..

$ node -v
v0.2.6

For npm:

curl http://npmjs.org/install.sh | sudo sh
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.