source: trip-planner-front/node_modules/http-parser-js/CHANGELOG.md@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 337 bytes
Line 
1# HTTP Parser
2
3## 0.4.4
4
5Made 'maxHeaderSize' configurable.
6
7```js
8// Monkey patch before you require http for the first time.
9process.binding('http_parser').HTTPParser = require('http-parser-js').HTTPParser;
10require('http-parser-js').HTTPParser.maxHeaderSize = 1024 * 1024; // 1MB instead of 80kb
11
12var http = require('http');
13// ...
14```
Note: See TracBrowser for help on using the repository browser.