I\'m receiving the following error with express:
Error: request entity too large at module.exports (/Users/michaeljames/Documents/Projects/Proj/mean/node
I too faced that issue, I was making a silly mistake by repeating the app.use(bodyParser.json()) like below:
app.use(bodyParser.json())
app.use(bodyParser.json()) app.use(bodyParser.json({ limit: '50mb' }))
by removing app.use(bodyParser.json()), solved the problem.