You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Very simple load testing framework for Pull and Push scenarios. It's 100% written in F# and targeting .NET Core and full .NET Framework.
9
+
NBomber is a modern and flexible load-testing framework for Pull and Push scenarios, designed to test any system regardless of a protocol (HTTP/WebSockets/AMQP, etc) or a semantic model (Pull/Push).
10
10
11
-
### Project Support
12
-
We appreciate every little donation. If everyone we've ever helped gave back just small donation a month, we'd be able to bring you NBomber for years and years to come.
13
-
If you or your company are using NBomber and willing to help keep the project sustainable, please donate via [Patreon](https://www.patreon.com/nbomber).
11
+
NBomber is free, developer-centric, and extensible.
12
+
Using NBomber, you can test the reliability and performance of your systems and catch performance regressions and problems earlier.
13
+
NBomber will help you to build resilient and performant applications that scale.
14
14
15
-
### How to install
16
-
To install NBomber via NuGet, run this command in NuGet package manager console:
17
-
```code
18
-
PM> Install-Package NBomber
19
-
```
20
-
21
-
### Documentation
22
-
Documentation is located [here](https://nbomber.com/docs/overview/).
23
-
24
-
### Run test scenario
25
-

-[Patreon](https://www.patreon.com/nbomber) - We appreciate every little donation. If everyone we've ever helped gave back just small donation a month, we'd be able to bring you NBomber for years and years to come.
20
+
If you or your company are using NBomber and willing to help keep the project sustainable, please donate via [Patreon](https://www.patreon.com/nbomber).
32
21
33
22
### Why we build NBomber and what you can do with it?
34
-
35
-
1. The main reason behind NBomber is to provide a **lightweight** framework for writing load tests which you can use to test literally **any** system and simulate **any** production workload. We wanted to provide only a few abstractions so that we could describe any type of load and still have a simple, intuitive API.
36
-
2. Another goal is to provide building blocks to validate your POC (proof of concept) projects by applying any complex load distribution.
37
-
3.With NBomber you can test any PULL or PUSH system (HTTP, WebSockets, GraphQl, gRPC, SQL Database, MongoDb, Redis etc).
23
+
The main reason behind NBomber is to provide a lightweight framework for writing load tests which you can use to test literally any system and simulate any production workload. We wanted to provide only a few abstractions so that we could describe any type of load and still have a simple, intuitive API.
24
+
Another goal is to provide building blocks to validate your POC (proof of concept) projects by applying any complex load distribution.
25
+
With NBomber you can test any PULL or PUSH system (HTTP, WebSockets, GraphQl, gRPC, SQL Databse, MongoDb, Redis etc).
26
+
With NBomber you can convert some of your integration tests to load tests easily.
38
27
39
28
NBomber as a modern framework provides:
40
29
- Zero dependencies on protocol (HTTP/WebSockets/AMQP/SQL)
41
30
- Zero dependencies on semantic model (Pull/Push)
42
31
- Very flexible configuration and dead simple API
43
32
- Cluster support
44
-
-Reporting sinks
33
+
-Real-time reporting
45
34
- CI/CD integration
46
35
- Plugins/extensions support
47
36
- Data feed support
48
37
49
38
### What makes it very simple?
50
-
NBomber is a foundation of building blocks which you can use to describe your test scenario, run it and get reports.
51
-
52
-
```fsharp
53
-
// FSharp example
54
-
55
-
let step = Step.create("step", fun context -> task {
56
-
57
-
// you can do any logic here: go to http, websocket etc
58
-
do! Task.Delay(seconds 1)
59
-
return Response.Ok()
60
-
})
61
-
62
-
Scenario.create "scenario" [step]
63
-
|> NBomberRunner.registerScenario
64
-
|> NBomberRunner.run
65
-
```
39
+
One of the design goals of NBomber is to keep API as minimal as possible.
40
+
Because of this, NBomber focuses on fully utilizing programming language(C#/F#) constructs instead of reinventing a new DSL that should be learned.
41
+
In other words, if you want to write a for loop, you don't need to learn a DSL for this.
0 commit comments