You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
1234567891011121314 |
- # 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');
- // ...
- ```
|