We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06fc09b commit 35396cfCopy full SHA for 35396cf
index.js
@@ -1,6 +1,11 @@
1
// Adapted from guidance for Azure Web environment:
2
// https://azureossd.github.io/2022/03/10/NodeJS-with-Keep-Alives-and-Connection-Reuse/index.html#httpagent-or-httpsagent-native-node-module
3
4
+// NOTES:
5
+// - keepAlive will be enabled in Node 19 by default
6
+// - in the Azure environment the number of available outbound connections
7
+// can vary, but its only safe to assume 128 total
8
+
9
const http = require('http');
10
const https = require('https');
11
0 commit comments