在 Node.js 中创建 Agent
可以使用新的 Agent() 方法在 Node 中创建一个 Agent 实例。http.request() 方法使用 'http' 模块中的 globalAgent 来创建一个自定义的 http.Agent 实例。
语法
new Agent({options})
参数
上述函数可以接受以下 **参数** −
**options** – 这些选项包含在创建 Agent 时可以设置的可配置选项。以下是 Agent 可以具有的字段/选项 −
**keepAlive** – 此方法无论是否有未完成的请求,都会保留套接字,但会将其保留以用于任何未来的请求,而无需实际重新建立 TCP 连接。可以使用 'close' 连接来关闭此连接。默认值:false。
**keepAliveMsecs** – 当将 keepAlive 选项设置为 true 时,此选项定义 TCP keep-Alive 数据包的初始延迟。默认值为 1000。
**maxSockets** – 此选项定义每个主机允许的最大套接字数。默认值为无穷大。
**maxTotalSockets** – 允许所有主机使用的套接字总数。每个请求都会使用新的套接字,直到达到限制为止。默认值为无穷大。
**maxFreeSockets** – 这是可以保持空闲状态的最大空闲套接字数。默认值:256。
**scheduling** – 这是在选择下一个要使用的空闲套接字时可以应用的调度策略。调度可以是 'fifo' 或 'lifo'。
**timeout** – 以毫秒为单位表示套接字超时。
示例
创建一个名为 agent.js 的文件并复制下面的代码片段。创建文件后,使用以下命令运行此代码,如下例所示:
node agent.js
agent.js
// Node.js program to demonstrate the creation of new Agent // Importing the http module const http = require('http'); // Creating a new agent var agent = new http.Agent({}); // Defining options for agent const aliveAgent = new http.Agent({ keepAlive: true, maxSockets: 5, }); // Creating connection with alive agent var aliveConnection = aliveAgent.createConnection; // Creating new connection var connection = agent.createConnection; // Printing the connection console.log('Succesfully created connection with agent: ', connection.toString); console.log('Succesfully created connection with alive agent: ', aliveConnection.toString);
输出
C:\home
ode>> node agent.js Succesfully created connection with agent: function toString() { [native code] } Succesfully created connection with alive agent: function toString() { [native code] }
示例
'agentkeepalive' 模块在尝试创建套接字或 Agent 时提供了更好的灵活性。我们将在下面的示例中使用此模块以更好地理解。
安装
npm install agentkeepalive --save
程序代码
// Node.js program to demonstrate the creation of new Agent // Importing the http module const http = require('http'); // Importing the agentkeepalive module const Agent = require('agentkeepalive'); // Creating a new agent const keepAliveAgent = new Agent({}); // Implementing some options const options = { host: 'tutorialspoint.com', port: 80, path: '/', method: 'GET', agent: keepAliveAgent, }; // Requesting details via http server module const req = http.request(options, (res) => { // Printing statuscode, headers and other details // received from the request console.log("StatusCode: ", res.statusCode); console.log("Headers: ", res.headers); }); // Printing the agent options console.log("Agent Options: ", req.agent.options); req.end();
输出
C:\home
ode>> node agent.js Agent Options: { socketActiveTTL: 0, timeout: 30000, freeSocketTimeout: 15000, keepAlive: true, path: null } StatusCode: 403 Headers: { date: 'Sun, 25 Apr 2021 08:21:14 GMT', server: 'Apache', 'x-frame-options': 'SAMEORIGIN', 'last-modified': 'Thu, 16 Oct 2014 13:20:58 GMT', etag: '"1321-5058a1e728280"', 'accept-ranges': 'bytes', 'content-length': '4897', 'x-xss-protection': '1; mode=block', vary: 'User-Agent', 'keep-alive': 'timeout=5, max=100', connection: 'Keep-Alive', 'content-type': 'text/html; charset=UTF-8' }