{"id":36418006,"url":"https://github.com/cesbit/java-qpack","last_synced_at":"2026-01-11T17:01:19.055Z","repository":{"id":56644442,"uuid":"123094351","full_name":"cesbit/java-qpack","owner":"cesbit","description":"Java QPack library","archived":false,"fork":false,"pushed_at":"2022-01-25T12:06:11.000Z","size":50,"stargazers_count":5,"open_issues_count":1,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-17T14:18:15.998Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/cesbit.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}},"created_at":"2018-02-27T08:03:11.000Z","updated_at":"2023-07-28T16:13:03.000Z","dependencies_parsed_at":"2022-08-15T22:31:21.849Z","dependency_job_id":null,"html_url":"https://github.com/cesbit/java-qpack","commit_stats":null,"previous_names":["transceptor-technology/java-qpack"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cesbit/java-qpack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fjava-qpack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fjava-qpack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fjava-qpack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fjava-qpack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cesbit","download_url":"https://codeload.github.com/cesbit/java-qpack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fjava-qpack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28314254,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-11T17:00:39.221Z","updated_at":"2026-01-11T17:01:19.044Z","avatar_url":"https://github.com/cesbit.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QPack Java\n\nQPack is a fast and efficient serialization format like MessagePack. One key difference is flexible map and array support which allows to write directly to a qpack buffer without the need to know the size for the map or array beforehand.\n\n\n## Installation\n\nYou can download the latest version [here](https://github.com/transceptor-technology/java-qpack/releases/latest).\nBut you can also clone this repository and build the project using maven (mvn \u003e= 3.3 and java 8 are recommended):\n\n```bash\nmvn clean install -Dgpg.skip\n```\n\nAfter building the project, grab the `target/java-qpack-0.0-SNAPSHOT.jar` file and add it to your own project as library.\n\n## Pack\n----\n\nCreate an instance of QPack and use its pack method\n\n```qpack.pack(Object data);```\n\n## Unpack\n\nWhen unpack is called with only the first parameter, each String will be returned as bytes.\n\n```qpack.unpack(byte[] qp, String decoder);```\n\n## Example\n\n```java\npackage qpack-test\n\nimport java.util.Arrays;\nimport transceptor.technology.QPack;\n\npublic class QPackTest() {\n\n    public static void main() {\n        QPack qpack = new QPack();\n\n        String[] data = new String[]{\"test\", \"qpack\", \"Java\"};\n\n        byte[] qp = qpack.pack(data);\n\n        Object[] result = (Object[]) qpack.unpack(qp, \"utf-8\");\n\n        System.out.println(Arrays.toString(result));\n    }\n\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesbit%2Fjava-qpack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcesbit%2Fjava-qpack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesbit%2Fjava-qpack/lists"}