This repository contains a simple Node.js HTTP server that demonstrates the basics of creating a server using the built-in http module. The server listens on port 7000 and responds with a plain text ...
var http = require('http'), session = require('./lib/core').session; // let's create a basic http server! http.createServer(function (request, response) { // before ...