はじめに
Vue.js プロジェクトで Performance Timing API を使う方法についてメモ。
TL;DR
new Vue({performance: true})
とする- 計測は
mark
とmeasure
を使う - 開発者モード および performance.mark API をサポートするブラウザでのみ動作
Vue.js プロジェクトで Performance Timing API を使う方法についてメモ。
new Vue({performance: true})
とするmark
と measure
を使うNode.js でミリ秒よりも高精度のタイマーやタイムスタンプを利用する方法について整理した。
microtime
(node-microtime
) を使うperformance.now()
と perfomance.timeOrigin
を組み合わせてもマイクロ秒オーダーで Unix Timestamp が取得できるprocess.hrtime()
でナノ秒オーダで計測が可能