问题标签 [node.js-client]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
93 浏览

javascript - 为什么不打印日期?

这是我的代码,有2个文件:

文件 b.js

文件 a.js

为什么不打印日期?

0 投票
5 回答
1497 浏览

javascript - 为什么 clearInterval 对函数不起作用

这是代码

为什么 clearinterval 不会阻止 setInterval 的执行?

0 投票
2 回答
1270 浏览

javascript - res.write is not returning the expected value

This is the code:

Why might the server be returning invalid information to the client when a return value of 3 is expected?

0 投票
1 回答
203 浏览

node.js - 如何节流 node.js http.get(...)

我正在尝试扫描网络并限制正在使用的资源(带宽、套接字等)。我以为我可以将 http.globalAgent.maxSockets 与 http.get() 一起使用。

我的测试代码是:

我希望脚本同时尝试最多 10 个主机/套接字,但网络捕获显示它使用了更多的套接字。

通过以下方式运行代码:

我需要创建一个 http.agent 并通过选项传递吗?