1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 10:51:56 +00:00
musix-oss/node_modules/http-parser-js/CHANGELOG.md

14 lines
337 B
Markdown
Raw Normal View History

2020-03-03 20:30:50 +00:00
# HTTP Parser
## 0.4.4
Made 'maxHeaderSize' configurable.
```js
// Monkey patch before you require http for the first time.
process.binding('http_parser').HTTPParser = require('http-parser-js').HTTPParser;
require('http-parser-js').HTTPParser.maxHeaderSize = 1024 * 1024; // 1MB instead of 80kb
var http = require('http');
// ...
```