rsnext/bench/rendering/readme.md
Vlad Filippov 23c9f0eef2
Fix contributing.md link in the rendering benchmark (#47303)
Fixes a 404 issue with the docs
2023-03-19 23:49:49 +00:00

29 lines
530 B
Markdown

# Next.js server-side benchmarks
## Installation
Follow the steps in [contributing.md](../../contributing.md)
Both benchmarks use `ab`. So make sure you have that installed.
## Usage
Before running the test:
```
npm run start
```
Then run one of these tests:
- Stateless application which renders `<h1>My component!</h1>`. Runs 3000 http requests.
```
npm run bench:stateless
```
- Stateless application which renders `<li>This is row {i}</li>` 10.000 times. Runs 500 http requests.
```
npm run bench:stateless-big
```