0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/benchmark/bench
Matthew Phillips d469bebd7b
Improve Node.js performance using an AsyncIterable (#9614)
* Improve Node.js performance using an AsyncIterable

* Oops

* Get rid of extra abstraction

* Update .changeset/hip-cherries-behave.md

Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>

* Check if already resolved

* Resolve on done

* Get rid of unneeded "done"

* Done when length is zero

* Let errors resolve

* Update packages/astro/src/runtime/server/render/astro/render.ts

Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>

* Move doctype to top-level

* Document the new function

* Update .changeset/hip-cherries-behave.md

Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>

* Update .changeset/hip-cherries-behave.md

---------

Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2024-02-14 10:14:05 -05:00
..
_template.js
_util.js Improve stress test benchmark (#8225) 2023-08-25 21:00:51 +08:00
cli-startup.js nit: use node: prefix everywhere (#7692) 2023-07-18 02:17:59 +02:00
memory.js nit: use node: prefix everywhere (#7692) 2023-07-18 02:17:59 +02:00
README.md
render.js Improve Node.js performance using an AsyncIterable (#9614) 2024-02-14 10:14:05 -05:00
server-stress.js nit: use node: prefix everywhere (#7692) 2023-07-18 02:17:59 +02:00

bench

This bench folder contains different benchmarking files that you can run via astro-benchmark <bench-file-name>, e.g. astro-benchmark memory. Files that start with an underscore are not benchmarking files.

Benchmarking files will run against a project to measure its performance, and write the results down as JSON in the results folder. The results folder is gitignored and its result files can be safely deleted if you're not using them.

You can duplicate _template.js to start a new benchmark test. All shared utilities are kept in _util.js.