1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-10 16:11:13 -05:00
denoland-deno/cli/bench/fs
2024-12-31 19:12:39 +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: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
serve.jsx chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +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/