In your code it you are not using the parameterLimitat all, as pointed out as in the blog posted you linked.
var bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({
extended: false,
parameterLimit: 1000000 // experiment with this parameter and tweak
}));