Tag Archives: nodejs

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

Node.js + MongoDB = Mongoose

Mongoose is a ORM like library that helps a lot when you want to access your collections defined on MongoDB from Node.js. You can use it without schemas but by defining ORM objects the code becomes much easier to read. … Continue reading

Posted in nodejs, nosql, sips | Tagged , | 1 Comment

node.js and Session Handling

node.js provides you a very fast HTTP server, however you have to implement many features by yourself, or you can try to find modules/projects developed for node.js. I prefer the first way and actually this the most fun part of … Continue reading

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

Installing node.js

Download from http://nodejs.org/#download tar -zxvf node-vx.x.xx.tar.gz cd node-vx.x.xx ./configure make sudo make install (To install system wide)

Posted in nodejs | Tagged , | Leave a comment