Repository URL to install this package:
|
Version:
4.0.0-1 ▾
|
vending-agent-dep
/
usr
/
local
/
lib
/
vending
/
agent
/
node_modules
/
http-parser-js
/
CHANGELOG.md
|
|---|
Made 'maxHeaderSize' configurable.
// 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'); // ...