Network Client
FluffyHttp
Making web requests and fetching JSON shouldn't feel like rocket science.
groupId: xyz.cuddlecloudartifactId: fluffyhttpversion: 1.0.0
Maven Installationpom.xml
pom.xml
<repositories>
<repository>
<id>cuddlecloud</id>
<url>https://libraries.cuddlecloud.xyz/repository/cuddlecloud/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>xyz.cuddlecloud</groupId>
<artifactId>fluffyhttp</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>A simple, fluffy, and lightweight HTTP client for Java.
</>Usage Examples
How to use FluffyHttp
Practical code examples to help you get started quickly.
GET Request
import xyz.cuddlecloud.fluffy.FluffyClient;
String response = FluffyClient.get("https://api.example.com")
.asString();✨Networking
Requests made fluffy.
Intuitive builder pattern for web calls.
🌐
JSON Ready
Built-in JSON mapping support.