Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vert.x | 13,773 | 7,633 | 658 | 3 days ago | 136 | June 22, 2023 | 283 | other | Java | |
Vert.x is a tool-kit for building reactive applications on the JVM | ||||||||||
Vertx Examples | 3,449 | a month ago | 45 | apache-2.0 | Java | |||||
Vert.x examples | ||||||||||
Vertx Awesome | 2,037 | 4 months ago | apache-2.0 | |||||||
A curated list of awesome Vert.x resources, libraries, and other nice things. | ||||||||||
Kvision | 1,103 | 35 | 13 days ago | 85 | August 16, 2023 | 17 | mit | Kotlin | ||
Object oriented web framework for Kotlin/JS | ||||||||||
Vertx Web | 1,059 | 8 days ago | 151 | apache-2.0 | Java | |||||
HTTP web applications for Vert.x | ||||||||||
Vertx Sql Client | 849 | 16 | 4 days ago | 54 | July 06, 2022 | 120 | apache-2.0 | Java | ||
High performance reactive SQL Client written in Java | ||||||||||
Smallrye Mutiny | 702 | 13 | 5 days ago | 49 | June 20, 2022 | 13 | apache-2.0 | Java | ||
An Intuitive Event-Driven Reactive Programming Library for Java | ||||||||||
Vertx Guide For Java Devs | 529 | 2 years ago | 13 | apache-2.0 | Java | |||||
Vert.x 3 guide for Java developers | ||||||||||
Hibernate Reactive | 400 | 3 | 7 days ago | 36 | June 30, 2022 | 81 | apache-2.0 | Java | ||
A reactive API for Hibernate ORM, supporting non-blocking database drivers and a reactive style of interaction with the database. | ||||||||||
Vertx Jooq | 356 | 2 | 2 | a year ago | 41 | August 25, 2022 | 33 | mit | Java | |
A jOOQ-CodeGenerator to create vertx-ified DAOs and POJOs. |
This is the repository for Vert.x core.
Vert.x core contains fairly low-level functionality, including support for HTTP, TCP, file system access, and various other features. You can use this directly in your own applications, and it's used by many of the other components of Vert.x.
For more information on Vert.x and where Vert.x core fits into the big picture please see the website.
> mvn package
Runs the tests
> mvn test
Vert.x supports native transport on BSD and Linux, to run the tests with native transport
> mvn test -PtestNativeTransport
Vert.x supports domain sockets on Linux exclusively, to run the tests with domain sockets
> mvn test -PtestDomainSockets
Vert.x has a few integrations tests that run a differently configured JVM (classpath, system properties, etc....) for ALPN, native and logging
> vertx verify -Dtest=FooTest # FooTest does not exists, its only purpose is to execute no tests during the test phase
> mvn package -Pdocs -DskipTests
Open target/docs/vertx-core/java/index.html with your browser