Skip to content

Instantly share code, notes, and snippets.

@tj
Created September 19, 2012 15:21
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tj/3750227 to your computer and use it in GitHub Desktop.
Save tj/3750227 to your computer and use it in GitHub Desktop.
var express = require('./')
var app = express();
app.use(function(req, res, next){
if (req.is('text/*')) {
req.text = '';
req.setEncoding('utf8');
req.on('data', function(chunk){ req.text += chunk });
req.on('end', next);
} else {
next();
}
});
app.post('/', function(req, res){
res.send('got "' + req.text + '"');
});
app.listen(3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment