Last weekend I had an eye opening discussion with my wife. The thing is, we had a mango, a huge mango, and it was delicious and sweet. I had cut it in the morning and shared the pieces into bowels for my wife, her mother and me. and yes, mine was just a little bit bigger . Hmmm, that was so good, directly emptied my bowl.

A few hours later I saw there Is one bowl left. ...

Read More

Setting up a webserver using nodejs is very easy. Using the HTTP-module simply create server, provide a handler function that will send some data back to client and start it on some port. But how difficult will it be to create one directly using the net module. The net module is in nodejs the way to build applications using the tcp protocol. HTTP is a protocol that is transferred within the tcp payload and it contains the application data.

Read More