express payloadtoolarge request entity too large bodyParser raw-body hydra-express

JavaScript
GOTO node_modules\hydra-express\node_modules\raw-body\index.js

function readStream(stream, encoding, length, limit, callback) {

  	limit = 999999999999; //ADD THIS LINE HERE (TO OVERWRITE THE LIMIT)
    
    if (limit !== null && length !== null && length > limit) {
      return done(createError(413, 'request entity too large', {
        expected: length,
        length: length,
        limit: limit,
        type: 'entity.too.large'
      }))
    }
    
   ... 
   
}
Source

Also in JavaScript: