I am using Express 3, and would like to handle text/plain POSTs.
Express 3 uses connect\'s bodyParser now (I think the old Express code got moved t
With bodyParser as dependency, add this to your app.js file.
app.js
var bodyParser = require('body-parser'); var app = express(); app.use(bodyParser.text());
Happy Noding.