One of the objectives of this repo is to benchmark two different binaries against some popular packages, in a fast way. Currently, I'm using the following script to diff:
// store baseline first
TTY=1 ./node ../nodejs-package-benchmark/index.js > baseline.out
TTY=1 ./node ../nodejs-package-benchmark/index.js > current.out
diff <(cat baseline.out) <(cat current.out)
but diff isn't clear enough.
I will conduct tests with git diff --no-index to find a balance, then update the repository with the script.
One of the objectives of this repo is to benchmark two different binaries against some popular packages, in a fast way. Currently, I'm using the following script to diff:
but
diffisn't clear enough.I will conduct tests with
git diff --no-indexto find a balance, then update the repository with the script.