{"id":37125564,"url":"https://github.com/coder543/msgpack","last_synced_at":"2026-01-14T14:31:02.778Z","repository":{"id":57634194,"uuid":"421265463","full_name":"coder543/msgpack","owner":"coder543","description":"easier, faster, but extendable MessagePack Serializer for Golang. / msgpack.org[Go]","archived":false,"fork":true,"pushed_at":"2021-11-03T18:16:57.000Z","size":309,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2024-06-20T06:39:01.862Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"shamaton/msgpack","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coder543.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":"2021-10-26T03:25:20.000Z","updated_at":"2021-10-26T03:25:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/coder543/msgpack","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/coder543/msgpack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder543%2Fmsgpack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder543%2Fmsgpack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder543%2Fmsgpack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder543%2Fmsgpack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coder543","download_url":"https://codeload.github.com/coder543/msgpack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder543%2Fmsgpack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28423271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-14T14:31:01.733Z","updated_at":"2026-01-14T14:31:02.630Z","avatar_url":"https://github.com/coder543.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# MessagePack for Golang\n\n[![Go Reference](https://pkg.go.dev/badge/github.com/shamaton/msgpack.svg)](https://pkg.go.dev/github.com/shamaton/msgpack)\n![test](https://github.com/shamaton/msgpack/workflows/test/badge.svg)\n[![Go Report Card](https://goreportcard.com/badge/github.com/shamaton/msgpack)](https://goreportcard.com/report/github.com/shamaton/msgpack)\n[![codecov](https://codecov.io/gh/shamaton/msgpack/branch/master/graph/badge.svg?token=9PD2JUK5V3)](https://codecov.io/gh/shamaton/msgpack)\n[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fshamaton%2Fmsgpack.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fshamaton%2Fmsgpack?ref=badge_shield)\n\n## 📣 Notice\nIf your application serializes only primitive types, array, map and struct, code generation is also recommended.\nYou can get the fastest performance with [msgpackgen](https://github.com/shamaton/msgpackgen).\n\n## Features\n* Supported types : primitive / array / slice / struct / map / interface{} and time.Time\n* Renaming fields via `msgpack:\"field_name\"`\n* Omitting fields via `msgpack:\"-\"`\n* Supports extend encoder / decoder\n* Can also Encoding / Decoding struct as array\n\nThis package requires more than  version **1.13**\n\n## Installation\n\nCurrent version is **msgpack/v2**.\n```sh\ngo get -u github.com/shamaton/msgpack/v2\n```\n\n## Quick Start\n```go\npackage main\n\nimport (\n  \"github.com/shamaton/msgpack/v2\"\n)\n\nfunc main() {\n\ttype Struct struct {\n\t\tString string\n\t}\n\tv := Struct{String: \"msgpack\"}\n\n\td, err := msgpack.Marshal(v)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tr := Struct{}\n\terr = msgpack.Unmarshal(d, \u0026r)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n}\n```\n\n## Benchmark\nThis result made from [shamaton/msgpack_bench](https://github.com/shamaton/msgpack_bench)\n\n![msgpack_bench](https://user-images.githubusercontent.com/4637556/128299009-4823e79b-d70b-4d11-8f35-10a4758dfeca.png)\n\n## License\n\nThis library is under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoder543%2Fmsgpack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoder543%2Fmsgpack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoder543%2Fmsgpack/lists"}