Tag Archives: npm

Installing Node on AWS Linux AMI

Here are the steps to install node, npm and express on Amazon 32 bit Linux AMI: sudo yum install gcc-c++ make sudo yum install openssl-devel wget http://nodejs.org/dist/node-v0.4.7.tar.gz (Pick the latest stable version available) tar -zxvf node-v0.4.7.tar.gz cd node-v0.4.7 export JOBS=2 … Continue reading

Posted in nodejs, sips | Tagged , , , | 9 Comments

Use nave to install/update node

Maybe I’m getting lazier or there is something good about projects that are easy to deploy. One of the things I like about nodejs is that it’s really easy to download and install. (Similar things could be said for MongoDB … Continue reading

Posted in nodejs | Tagged , | Leave a comment