This is how to read query string or user request in NodeJS.
Example:
var http = require('http');
http.createServer(function(req,res){
res.writeHead(200,{'Content-Type':'text/html'});
res.write(req.url);
}).listen(3000);
On browser, please enter the following url:
http://localhost:3000/?page=about