mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
29 lines
697 B
Markdown
29 lines
697 B
Markdown
|
# Nuxt.js server-side benchmarks
|
||
|
|
||
|
> Taken from [Next.js benchmarks](https://github.com/zeit/next.js/tree/master/bench), if you like React, we recommend you to try [Next.js](https://github.com/zeit/next.js).
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
Follow the steps in [CONTRIBUTING.md](../CONTRIBUTING.md).
|
||
|
|
||
|
Both benchmarks use `ab`. So make sure you have it 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
|
||
|
```
|