MEANJS : 413 (Request Entity Too Large)
You can add following to express config:
app.use(bodyParser.urlencoded({limit: '50mb'}));
app.use(bodyParser.json({limit: '50mb'}));
Basically you need to configure Express webserver to accept bigger request size. Replace 50mb
with whatever maxsize you want to accept.
Hope this helps!!!