An open API service indexing awesome lists of open source software.

https://github.com/smart-test-ti/webmeter

A web api-performance tool based on jmeter.(WEB版的JMeter)
https://github.com/smart-test-ti/webmeter

api-performance api-performance-testing fastapi jmeter vue3

Last synced: 26 days ago
JSON representation

A web api-performance tool based on jmeter.(WEB版的JMeter)

Awesome Lists containing this project

README

          


English | 中文




Webmeter





webmeter preview

## WebMeter

An Open Source Web API-Performance tool based on JMeter.

## Requirements

- Install python 3.10+ [**Download**](https://www.python.org/downloads/)
- Install java 1.8+ [**Download**](https://www.java.com/)

## Installation

### default

```shell
pip install -U webmeter
```

### mirrors

```shell
pip install -i https://mirrors.ustc.edu.cn/pypi/web/simple -U webmeter
```

## Quickstart

### default

```shell
python -m webmeter
```

### customize

```shell
python -m webmeter --host={ip} --port={port}
```

## Develop

* https://fastapi.tiangolo.com/
* https://cn.vuejs.org/
* https://element-plus.org/
* https://github.com/tabler/tabler
* https://jmeter.apache.org/

### debug

* remove [webmeter] moudle from all python file

```python
example
from webmeter.public.plan import TestPlan
change to
from public.plan import TestPlan
```

* run debug.py

```shell
cd webmeter
python debug.py
```