{"id":30347279,"url":"https://github.com/krymonota/packetty","last_synced_at":"2026-05-06T01:37:40.069Z","repository":{"id":191027728,"uuid":"288026394","full_name":"Krymonota/packetty","owner":"Krymonota","description":"Packetty is a simple, packet-based and event-driven Netty wrapper that saves you a lot of work.","archived":false,"fork":false,"pushed_at":"2020-08-20T18:53:15.000Z","size":18,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-04-29T23:50:03.031Z","etag":null,"topics":["jackson","json","listener","netty","packet"],"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/Krymonota.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-08-16T21:22:39.000Z","updated_at":"2021-02-21T02:20:52.000Z","dependencies_parsed_at":"2023-08-27T19:25:12.272Z","dependency_job_id":null,"html_url":"https://github.com/Krymonota/packetty","commit_stats":null,"previous_names":["krymonota/packetty"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Krymonota/packetty","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Krymonota%2Fpacketty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Krymonota%2Fpacketty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Krymonota%2Fpacketty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Krymonota%2Fpacketty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Krymonota","download_url":"https://codeload.github.com/Krymonota/packetty/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Krymonota%2Fpacketty/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271021063,"owners_count":24685974,"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","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["jackson","json","listener","netty","packet"],"created_at":"2025-08-18T16:15:06.478Z","updated_at":"2025-10-10T14:33:16.311Z","avatar_url":"https://github.com/Krymonota.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Packetty [![License](https://img.shields.io/github/license/Krymonota/packetty.svg?style=flat-square)](https://github.com/Krymonota/packetty/LICENSE.txt) \nPacketty is a simple, packet-based and event-driven [Netty](https://github.com/netty/netty) wrapper that saves you a lot of work.\n\nAfter implementing several projects with Netty, I noticed that I had to write the same boilerplate code over and over again. Since I didn't feel like doing this anymore and wanted to reduce maintenance effort as well as use my time more efficiently, I developed Packetty.\n\n## Table of Contents\n* [Including the wrapper in your project](#including-the-wrapper-in-your-project)\n   * [No build or dependency management tool](#no-build-or-dependency-management-tool)\n   * [Using build or dependency management tool](#using-build-or-dependency-management-tool)\n* [Simple example project](#simple-example-project)\n* [Used dependencies and tools](#used-dependencies-and-tools)\n* [License](#license)\n\n## Including the wrapper in your project\n#### No build or dependency management tool\nYou can [download the latest version from the releases page](https://github.com/Krymonota/packetty/releases/latest) and add the `.jar` files to your project libraries. We recommend using a build and dependency management tool though.\n\n#### Using build or dependency management tool\n\u003cdetails\u003e\n  \u003csummary\u003eAs Maven dependency\u003c/summary\u003e\n\n```xml\n\u003c!-- Add required repository --\u003e\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003epacketty\u003c/id\u003e\n        \u003curl\u003ehttps://mymavenrepo.com/repo/v3i97KuHAZF1V0yF9mn0/\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n\n\u003c!-- Add common as dependency --\u003e\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003eid.niklas\u003c/groupId\u003e\n        \u003cartifactId\u003epacketty-common\u003c/artifactId\u003e\n        \u003cversion\u003e1.1.3\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n\n\u003c!-- Add client as dependency --\u003e\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003eid.niklas\u003c/groupId\u003e\n        \u003cartifactId\u003epacketty-client\u003c/artifactId\u003e\n        \u003cversion\u003e1.1.3\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n\n\u003c!-- Add server as dependency --\u003e\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003eid.niklas\u003c/groupId\u003e\n        \u003cartifactId\u003epacketty-server\u003c/artifactId\u003e\n        \u003cversion\u003e1.1.3\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\u003c/details\u003e\n\u003cdetails\u003e\n  \u003csummary\u003eAs Gradle dependency\u003c/summary\u003e\n\n```gradle\n// Add required repository\nallprojects {\n    repositories {\n        maven { url 'https://mymavenrepo.com/repo/v3i97KuHAZF1V0yF9mn0/' }\n    }\n}\n\n// Add common as dependency\ndependencies {\n    implementation 'id.niklas:packetty-common:1.1.3'\n}\n\n// Add client as dependency\ndependencies {\n    implementation 'id.niklas:packetty-client:1.1.3'\n}\n\n// Add server as dependency\ndependencies {\n    implementation 'id.niklas:packetty-server:1.1.3'\n}\n```\n\u003c/details\u003e\n\u003cdetails\u003e\n  \u003csummary\u003eAs SBT dependency\u003c/summary\u003e\n\n```scala\n// Add required repository\nresolvers += \"packetty\" at \"https://mymavenrepo.com/repo/v3i97KuHAZF1V0yF9mn0\"\n\n// Add common as dependency\nlibraryDependencies += \"id.niklas\" % \"packetty-common\" % \"1.1.3\"\n\n// Add client as dependency\nlibraryDependencies += \"id.niklas\" % \"packetty-client\" % \"1.1.3\"\n\n// Add server as dependency\nlibraryDependencies += \"id.niklas\" % \"packetty-server\" % \"1.1.3\"\n```\n\u003c/details\u003e\n\n## Simple example project\nCheck out [Packetty Ping Pong](https://github.com/Krymonota/packetty-pingpong) for a simple example project that demonstrates the use of Packetty.\n\n## Used dependencies and tools\nDon't worry, I've already taken care of the dependencies, so you won't have to. Nevertheless, I would like to draw attention to the software libraries and frameworks used, without which the project couldn't have been realized this way:\n- [Netty](https://netty.io/)\n- [Jackson](https://github.com/FasterXML/jackson)\n- [Moonwlker](https://github.com/bertilmuth/moonwlker)\n- [Guava](https://github.com/google/guava)\n- [Log4j](https://logging.apache.org/log4j/)\n- [Project Lombok](https://projectlombok.org/)\n- [JUnit](https://junit.org/junit5/)\n\n## License\nThis project is licensed under the MIT License. See the [LICENSE.txt](https://github.com/Krymonota/packetty/blob/master/LICENSE.txt) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrymonota%2Fpacketty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkrymonota%2Fpacketty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrymonota%2Fpacketty/lists"}