deno/cli/bench/fs
2023-07-08 18:34:08 +00:00
..
.gitignore perf: fs optimizations - part 1 (#15873) 2022-09-22 14:39:25 +05:30
README.md perf: fs optimizations - part 1 (#15873) 2022-09-22 14:39:25 +05:30
run.mjs chore: upgrade to dprint 0.39 (#19768) 2023-07-08 18:34:08 +00:00
serve.jsx chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00

fs benchmarks

adding new benchmarks

const copyFileSync = getFunction("copyFileSync");
bench(() => copyFileSync("test", "test2"));

// For functions with side-effects, clean up after `bench` like so:
const removeSync = getFunction("removeSync");
removeSync("test2");

running

deno run -A --unstable run.mjs
node run.js

view report

deno run --allow-net=127.0.0.1:9000 serve.jsx
# View rendered report at http://127.0.0.1:9000/