Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benc-uk/hey-frontend
This is a web frontend for the 'hey' HTTP load generation utility
https://github.com/benc-uk/hey-frontend
hey load-testing nodejs perfromance reporting
Last synced: 2 days ago
JSON representation
This is a web frontend for the 'hey' HTTP load generation utility
- Host: GitHub
- URL: https://github.com/benc-uk/hey-frontend
- Owner: benc-uk
- License: mit
- Created: 2019-04-13T18:19:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-28T08:22:18.000Z (9 months ago)
- Last Synced: 2024-11-11T11:47:18.601Z (about 1 month ago)
- Topics: hey, load-testing, nodejs, perfromance, reporting
- Language: JavaScript
- Homepage:
- Size: 12.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Hey Frontend
This is a web frontend for the ['hey' HTTP load generation utility](https://github.com/rakyll/hey)
It provides a means to both run `hey`, and then display report with charts of the results
### Screenshot
![](https://user-images.githubusercontent.com/14982936/56269600-ec53b280-60eb-11e9-93ea-0917b3a9827c.png)
# Running Locally
The server is written in Node.js, start with the following. The server will listen on port 3000
```bash
yarn install
yarn start
```(You can use npm instead of yarn if you're old fashioned)
# Running in Docker
Container image is hosted publicly on GitHub Registry, run with
```bash
docker run -d -p 3000:3000 ghcr.io/benc-uk/hey-frontend:latest
```