{"id":15014366,"url":"https://github.com/fmjsjx/libnetty","last_synced_at":"2026-04-02T00:55:40.413Z","repository":{"id":46565729,"uuid":"246451451","full_name":"fmjsjx/libnetty","owner":"fmjsjx","description":"A set of some useful libraries based on netty-4.x.","archived":false,"fork":false,"pushed_at":"2025-04-14T09:01:29.000Z","size":1608,"stargazers_count":12,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T00:05:36.722Z","etag":null,"topics":["codec","fastcgi","http","java","netty","redis"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fmjsjx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-03-11T02:01:41.000Z","updated_at":"2025-04-14T09:09:42.000Z","dependencies_parsed_at":"2024-02-26T07:30:53.967Z","dependency_job_id":"1dae1fe6-fcf9-41a3-9917-b85e8e232ed9","html_url":"https://github.com/fmjsjx/libnetty","commit_stats":{"total_commits":546,"total_committers":6,"mean_commits":91.0,"dds":"0.020146520146520186","last_synced_commit":"487b38922cede48230cc5574c5661fb2f2329b7d"},"previous_names":[],"tags_count":71,"template":false,"template_full_name":null,"purl":"pkg:github/fmjsjx/libnetty","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmjsjx%2Flibnetty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmjsjx%2Flibnetty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmjsjx%2Flibnetty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmjsjx%2Flibnetty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fmjsjx","download_url":"https://codeload.github.com/fmjsjx/libnetty/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmjsjx%2Flibnetty/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264040940,"owners_count":23548070,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["codec","fastcgi","http","java","netty","redis"],"created_at":"2024-09-24T19:45:31.527Z","updated_at":"2026-04-02T00:55:40.400Z","avatar_url":"https://github.com/fmjsjx.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LibNetty Project\n\nA set of some useful libraries based on Netty4.\n\n## JDK version compatibility list\n| version | JDK version |\n|---------|-------------|\n| 4.x     | JDK 21+     |\n| 3.x     | JDK 17+     |\n| 2.x     | JDK 11+     |\n| older   | JDK 8+      |\n\n## Add Dependencies\n\n### Add Maven Dependencies\n`pom.xml`\n```xml\n\u003cpom\u003e\n  \u003cdependencyManagement\u003e\n    \u003cdependencies\u003e\n      \u003c!-- BOM --\u003e\n      \u003cdependency\u003e\n        \u003cgroupId\u003ecom.github.fmjsjx\u003c/groupId\u003e\n        \u003cartifactId\u003elibnetty-bom\u003c/artifactId\u003e\n        \u003cversion\u003e4.1.5\u003c/version\u003e\n        \u003ctype\u003epom\u003c/type\u003e\n        \u003cscope\u003eimport\u003c/scope\u003e\n      \u003c/dependency\u003e\n    \u003c/dependencies\u003e\n  \u003c/dependencyManagement\u003e\n  \u003cdependencies\u003e\n    \u003c!-- HTTP server --\u003e\n    \u003cdependency\u003e\n      \u003cgroupId\u003ecom.github.fmjsjx\u003c/groupId\u003e\n      \u003cartifactId\u003elibnetty-http-server\u003c/artifactId\u003e\n    \u003c/dependency\u003e\n  \u003c/dependencies\u003e\n\u003c/pom\u003e\n```\n\n### Add Gradle Dependencies\n\n#### Groovy DSL\n```groovy\nrepositories {\n    mavenCentral\n}\n\ndependencies {\n    // BOM\n    implementation platform('com.github.fmjsjx:libnetty-bom:4.1.5')\n    // HTTP server\n    implementation 'com.github.fmjsjx:libnetty-http-server'\n}\n```\n\n#### Kotlin DSL\n```kotlin\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    // BOM\n    implementation(platform(\"com.github.fmjsjx:libnetty-bom:4.1.5\"))\n    // HTTP server\n    implementation(\"com.github.fmjsjx:libnetty-http-server\")\n}\n```\n\n## Modules\n\nThere are a number of modules in LibNetty, here is a quick overview:\n\n### libnetty-fastcgi\n\nThe [`libnetty-fastcgi`](libnetty-fastcgi) module provides codec components for [`Fast-CGI`](https://fastcgi-archives.github.io/FastCGI_Specification.html).\n\n### libnetty-handler\n\nThe [`libnetty-handler`](libnetty-handler) module provides additional features for `netty-handler`.\n\n### libnetty-http\n\nThe [`libnetty-http`](libnetty-http) module provides additional utility functions for `HTTP/1.x`.\n\n### libnetty-http-client\n\nThe [`libnetty-http-client`](libnetty-http-client) module provides a simplified HTTP client, supports both synchronous and asynchronous(based on JDK8+ CompletableFuture) APIs.\n\n### libnetty-http-server\n\nThe [`libnetty-http-server`](libnetty-http-server) module provides a simplified HTTP server framework.\n\n### libnetty-resp\n\nThe [`libnetty-resp`](libnetty-resp) module provides codec components for [`RESP(REdis Serialization Protocol)`](https://redis.io/topics/protocol).\n\n### libnetty-resp3\n\nThe [`libnetty-resp3`](libnetty-resp3) module provides codec components for [`RESP3 specification`](https://github.com/antirez/RESP3/blob/master/spec.md).\n\n### libnetty-transport\n\nThe [`libnetty-transport`](libnetty-transport) module provides additional features, such as `auto-selection of java/native transport`, for `netty-transport`.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffmjsjx%2Flibnetty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffmjsjx%2Flibnetty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffmjsjx%2Flibnetty/lists"}