Performance demo for large tables using the table package. This creates a table with ~3000 rows, and measures the time taken.
- Clone this repo
npm installnode index.js
The running time will be output to the console.
To record a CPU profile, run:
node --cpu-prof index.js
A .cpuprof file will be written to this directory.
You can load the file into SpeedScope to view the longest running functions.
There's an example CPU profile in this repo already.
This project is licensed under the MIT License.