Skip to content

Instantly share code, notes, and snippets.

@dubeme
Forked from tj/text.js
Created February 12, 2014 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dubeme/8950700 to your computer and use it in GitHub Desktop.
Save dubeme/8950700 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