如何计算使用got时花费的时间?

How to calculate the time spent when using got?

示例代码:

const got = require('got');
async function timeSpent (){
   const time = new Date().getTime()
   await got('***')
   return new Date().getTime() - time
}

不知有没有更好的方法?

性能 - 是衡量此类事物的本机方法。

const got = require('got');
async function timeSpent (){
  var t0 = performance.now();
  await got('***')
  var t1 = performance.now();
  console.log("Call to do something took " + (t1 - t0) + " milliseconds.");
  return t1 - t0;
}

检查浏览器支持 https://caniuse.com/#search=performance

你可以走这条路

console.time('test1');
console.time('test2');

setTimeout( (elem) => {
   console.log('You want to write something here!!');
   console.timeEnd('test2');
}, 2000);

console.timeEnd('test1');

您可以使用第 3 方 statman-stopwatch 轻松记录总时间。

例子

const got = require('got');
const Stopwatch = require('statman-stopwatch');
async function timeSpent (){
    const sw = new Stopwatch();
    sw.start();
    await got('***');
    sw.stop();
    const delta = sw.read();
  return delta;
}
 let currentDate = moment().format('YYYY/MM/DD HH:mm')
            let dataCalca = moment(dataValue).format('YYYY/MM/DD HH:mm')
            let hours = moment
              .duration(moment(currentDate, 'YYYY/MM/DD HH:mm')
                .diff(moment(dataCalca, 'YYYY/MM/DD HH:mm'))
              ).asHours();

所以你得到的数字是一个小时。你可以用那个计算

使用got时不需要实现自己的时序逻辑。

响应包含一个计时对象,该对象收集每个阶段花费的所有毫秒数。

只需要从响应对象中读出timings.phases.total即可

const path = "http://localhost:3000/authenticate";
const response = await got.post(path, {
  body: { username: "john_doe", password: "mypass" },
  json: true,
  headers: {
    Accept: "application/json",
    "Content-type": "application/json",
  },
});

logger.debug({type: 'performance', path, duration: response.timings.phases.total});

参考:

https://github.com/sindresorhus/got#timings

https://github.com/sindresorhus/got/pull/590