fix: added a missing semicolon in css styles in examples/auth (#6297)
[express.git] / benchmarks / README.md
blob1894c527d63f011caca9b36bd6c0e3d1cb4ac7c1
1 # Express Benchmarks
3 ## Installation
5 You will need to install [wrk](https://github.com/wg/wrk/blob/master/INSTALL) in order to run the benchmarks.
7 ## Running
9 To run the benchmarks, first install the dependencies `npm i`, then run `make`
11 The output will look something like this:
13 ```
14   50 connections
15   1 middleware
16  7.15ms
17  6784.01
19  [...redacted...]
21   1000 connections
22   10 middleware
23  139.21ms
24  6155.19
26 ```
28 ### Tip: Include Node.js version in output
30 You can use `make && node -v` to include the node.js version in the output.
32 ### Tip: Save the results to a file
34 You can use `make > results.log` to save the results to a file `results.log`.