Skip to content

Instantly share code, notes, and snippets.

View nasser-torabzade's full-sized avatar

Nasser Torabzade nasser-torabzade

View GitHub Profile
@nasser-torabzade
nasser-torabzade / httpServer.js
Created October 19, 2013 11:32
the app starts with `nodeIndex.js`
var httpPort = 80;
var http = require('http');
function start(){
http.createServer(onRequest).listen(httpPort);
function onRequest (request, response) {
request.setEncoding("utf8");
var postData = "";