This repo has a load test sample using Locust.
It has a sample server and the load test script to run against the server.
Server is written in Node.js and Locust script in Python.
Have Node.js (12+) in your machine and type commands below in server-nodejs/ folder.
$ npm install
$ node server.jsHave .NET Core (3.1) in your machine and type commands below in server-netcore/ folder.
$ dotnet runHave Python (3.6+) installed in your machine, then install Locust using pip.
$ pip install locustType command below in loadtest/ folder to start Locust server.
$ locust -f loadtest.py