Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/phungvandat/k6


https://github.com/phungvandat/k6

golang k6 mongo

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

K6 testing

Start HTTP server:
- init env (first time)
```
cat .env.example > .env
```
- run server:
```
make dev
```

K6 test APIs:
```bash
# get API
make test_get

# post API
make test_post

# post sync
make test_post_sync

# post async
make test_post_async

# post batch
make test_post_batch
```