Skip to content
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

Latest commit

 

History

History
19 lines (15 loc) · 557 Bytes

readme.md

File metadata and controls

19 lines (15 loc) · 557 Bytes

Overview and motivation

A super simple wrapper to let you understand how many times a function is being called during an event loop tick and how much time it took to run.

Usage

// your code before
const myFn = () => {};

// your code to run the profiler
const profile = require('fn-profiler');
const myFn = profile(() => {});

// optionally
const myFn = profile(() => {}, 'Human Friendly Name', {maxConsolesPerTick: 1});

Planned improvements

  • Configurability & Output.
  • Logged output likely to change, don't count on it's format