Skip to content

Instantly share code, notes, and snippets.

@MrJaba
Created July 30, 2010 08:47
Show Gist options
  • Save MrJaba/500171 to your computer and use it in GitHub Desktop.
Save MrJaba/500171 to your computer and use it in GitHub Desktop.
var sys = require('sys'),
http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
//Add a listener to the request for the request body data
var thing = null;
req.addListener('data', function(data){
thing = data.toString();
}).addListener('end', function() {
res.end("Post data:"+thing);
});
}).listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment