Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phungvandat/k6
https://github.com/phungvandat/k6
golang k6 mongo
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/phungvandat/k6
- Owner: phungvandat
- Created: 2022-02-09T14:04:55.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-11T02:43:37.000Z (almost 3 years ago)
- Last Synced: 2024-06-21T08:23:08.584Z (7 months ago)
- Topics: golang, k6, mongo
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```