https://github.com/openfeign/feignx
Experimental version of Feign, for asynchronous, non-blocking and reactive modes
https://github.com/openfeign/feignx
Last synced: 8 months ago
JSON representation
Experimental version of Feign, for asynchronous, non-blocking and reactive modes
- Host: GitHub
- URL: https://github.com/openfeign/feignx
- Owner: OpenFeign
- License: apache-2.0
- Created: 2019-05-09T21:01:10.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2022-07-06T02:17:06.000Z (over 3 years ago)
- Last Synced: 2025-04-19T18:17:06.513Z (11 months ago)
- Language: Java
- Homepage:
- Size: 517 KB
- Stars: 15
- Watchers: 3
- Forks: 3
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# FeignX
[](https://circleci.com/gh/OpenFeign/feignx/tree/master) 
[](https://snyk.io/test/github/openfeign/feignx)
FeignX, an experimental version of [Feign](https://github.com/OpenFeign/feign), extending the
core concepts of Feign beyond HTTP and REST including support for pooled, asynchronous, non-blocking,
and reactive execution modes.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for
development and testing purposes.
### Prerequisites
What things you need:
* [Recent Java JDK: (11 or higher)](https://adoptopenjdk.net/)
* A clone of this repository:
```
git clone https://github.com/openfeign/feignx.git
cd feignx
```
### Building from the Command Line
To compile, test, and build all artifacts, use:
```
./mvnw install
```
The first time you run the build, it may take some time to download Maven and all of the required
dependencies, compile, and run all of the tests. Dependencies will be cached in your `$HOME/.m2`
directory.
### Importing into your IDE
Most popular IDE environments support reading project information from a Maven `pom.xml` file.
Follow the instructions for your preferred IDE:
* [JetBrains IntelliJ](https://www.jetbrains.com/help/idea/maven-support.html)
* [Eclipse](https://books.sonatype.com/m2eclipse-book/reference/creating-sect-importing-projects.html)
* [Visual Studio Code](https://code.visualstudio.com/docs/java/java-project)
## Running the tests
To test your changes, run the test suite using:
```
./mvnw clean test
```
This will run the entire test suite, verifying your changes including formatting, licensing, and
code coverage.
## Built With
* [Maven](https://maven.apache.org/) - Dependency Management
* [Snyk](https://snyk.io/) - Security and Dependency Scanning
* [Circle CI](https://circleci.com) - Continuous Integration and Deployment
* [Codecov](https://codecov.io) - Code Coverage tracking and reporting
## Issues
To report an issue, or check on the status of an issue, see the [Issues](https://github.com/openfeign/feignx/issues)
section of this repository.
## Contributing
Please read [CONTRIBUTING](CONTRIBUTING.md) for details on our [Code of Conduct](CODE_OF_CONDUCT.md),
and the process for submitting [Pull Requests](https://github.com/openfeign/feignx/pulls) to us.
## Releases
For the versions available, see the [tags on this repository](https://github.com/openfeign/feignx/tags)
or [Maven Central](https://search.maven.org/search?q=g:io.github.openfeign)
## Contributors
See also the list of [contributors](https://github.com/openfeign/contributors) who participated in this project.
## License
This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE.md) file for details
## Acknowledgments
* [Netflix OSS](https://netflix.github.io/)