执行时间网页

时间:2016-12-19 10:27:33

标签: javascript node.js

我想获得远程网页的执行时间,这是服务器生成网页所需的时间。我使用nodejs。我怎么能这样做?

2 个答案:

答案 0 :(得分:0)

您可以使用console.time()和console.timeEnd()

console.time("exec-time");
/* some code to benchmark */
console.timeEnd("exec-time");

了解更多信息https://nodejs.org/api/console.html#console_console_time_label

答案 1 :(得分:0)

使用webpagetest库。

您可以阅读更多相关信息here

我认为这对你有用。感谢。