新しい Agent() メソッドを使用して、Node.js でエージェント インスタンスを作成できます。 http.request() メソッドは、「http」モジュールの globalAgent を使用してカスタム http.Agent インスタンスを作成します。
new Agent({options})
上記の関数は、次の パラメータ-
を受け入れることができます。 #options < /strong> – これらのオプションには、作成時にエージェントに設定できる構成可能なオプションが含まれます。プロキシが持つことができるフィールド/オプションは次のとおりです -
keepAlive - このメソッドは、未処理のリクエストがあるかどうかに関係なくソケットを保持しますが、それらを For に保持します。実際に TCP 接続を再確立することなく、今後のリクエストで使用されます。この接続は、「接続を閉じる」を使用して閉じることができます。デフォルト値: false。
keepAliveMsecs - このオプションは、keepAlive オプションが true に設定されている場合の、TCP キープアライブ パケットの初期遅延を定義します。デフォルト値は 1000 です。
maxSockets - このオプションは、ホストごとに許可されるソケットの最大数を定義します。デフォルトでは、この値は無限大です。
maxTotalSockets – すべてのホストに許可されるソケットの合計数。各リクエストは、制限に達するまで新しいソケットを使用します。デフォルト値は無限大です。
maxFreeSockets - これは、アイドル状態で開いたままにできる空きソケットの最大数です。デフォルト値は 256 です。
スケジューリング - これは、次に使用する空きソケットを選択するときに適用できるスケジューリング ポリシーです。スケジュールには「fifo」または「lifo」を指定できます。
Timeout - ソケットのタイムアウトをミリ秒単位で表します。
agent.js というファイルを作成し、次のコード スニペットをコピーします。ファイルを作成した後、次の例に示すように、次のコマンドを使用してこのコードを実行します。 -
node agent.js
agent.js
Live Demo
// 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:\homeode>> node agent.js Succesfully created connection with agent: function toString() { [native code] } Succesfully created connection with alive agent: function toString() { [native code] }
「agentkeepalive」モジュールは、ソケットまたはエージェントを作成するときに優れた柔軟性を提供します。理解を深めるために、次の例でこのモジュールを使用します。
インストール
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:\homeode>> 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' }
以上がNode.jsでプロキシを作成するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。