Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

Node.js server.maxHeadersCount Property

❮ HTTP Server


Example

Set the maximum number of incoming headers:

var http = require('http');
var srvr = http.createServer(function (req, res) {
  res.write('Hello World!');
  res.end();
});
srvr.listen(8080);
srvr.maxHeadersCount = 100;

Definition and Usage

The server.maxHeadersCount property sets the maximum number of incoming headers. Default is 1000.

If the server.maxHeadersCount is set to 0, there will be no limit of incoming headers.


Syntax

server.maxHeadersCount = number;

Technical Details

Return Value: None
Node.js Version: 0.7.0

❮ HTTP Server