自分の計測手法
- 基本はプリントデバッグ一本
- 調査対象に依存しない
- 高度なツールは環境依存しがち
- ※人による
const started = performance.now();
console.log("js:started", started);
function MyApp(props) {
useEffect(() => {
console.log('useEffect with', props);
console.time('req:xxx');
fetch('/xxx').then((res) => {
console.timeEnd('req:xxx')
debugger;
});
}, []);
return <div>...</div>
}