Node.js agent.maxSockets Method
The Node.js HTTP API is low-level so that it could support the HTTP applications. In order to access and use the HTTP server and client, we need to call them (by ‘require(‘http’)‘). HTTP message headers are represented as JSON Format.
The agent.maxSockets (Added in v0.3.6) method is an inbuilt application programming interface of the ‘Http‘ module which determines how many concurrent sockets the agent can have open per origin. Origin is the returned value of agent.getName().
In order to get a response and a proper result, we need to import ‘http’ module.
Import:
const http = require('http');
Syntax:
agent.maxSockets;
Parameters: This function does not accept any parameters as mentioned above.
Return Value <number>: By default, it is set Infinity. It determines how many concurrent sockets the agent can have open per origin.
The below example illustrates the use of agent.maxSockets method in Node.js.
Example 1: Filename: index.js
// Node.js program to demonstrate the // agent.maxSockets method // Importing http module const http = require( 'http' ); // Importing agentkeepalive module const Agent = require( 'agentkeepalive' ); // Creating new agent const keepAliveAgent = new Agent({}); console.log(keepAliveAgent.maxSockets); // Options object const options = { host: 'geeksforgeeks.org' , port: 80, path: '/' , method: 'GET' , agent: keepAliveAgent, }; // Requesting via http server module const req = http.request(options, (res) => { // Printing statuscode console.log( "StatusCode: " , res.statusCode); }); req.end(); |
Run index.js file using the following command:
node index.js
Output:
Infinity
StatusCode: 301
Reference: https://nodejs.org/api/http.html#http_agent_maxsockets