How to validate the speed of your filesystem
This is a good benchmark to validate if your code is slow or its just the file look-ups on the filesystem. We're listing all files in the node_modules folder. Here's what it should look like: time find node_modules -type f | wc -l 23224 real…