{"id":36863113,"url":"https://github.com/zerjioang/dotmap","last_synced_at":"2026-01-12T14:51:36.907Z","repository":{"id":79852182,"uuid":"263325872","full_name":"zerjioang/dotmap","owner":"zerjioang","description":"A dot notation compatible concurrent-safe golang hashmap","archived":false,"fork":false,"pushed_at":"2021-10-22T15:00:54.000Z","size":536,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-20T07:56:57.373Z","etag":null,"topics":["dot-notation","golang","json","json-go"],"latest_commit_sha":null,"homepage":"https://www.buymeacoffee.com/zerjioang","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zerjioang.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-12T12:09:52.000Z","updated_at":"2023-09-19T23:30:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"86e5fdb9-4a88-4760-9b39-eacf89976fdc","html_url":"https://github.com/zerjioang/dotmap","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/zerjioang/dotmap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerjioang%2Fdotmap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerjioang%2Fdotmap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerjioang%2Fdotmap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerjioang%2Fdotmap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zerjioang","download_url":"https://codeload.github.com/zerjioang/dotmap/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerjioang%2Fdotmap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28340411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T12:22:26.515Z","status":"ssl_error","status_checked_at":"2026-01-12T12:22:10.856Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["dot-notation","golang","json","json-go"],"created_at":"2026-01-12T14:51:36.797Z","updated_at":"2026-01-12T14:51:36.865Z","avatar_url":"https://github.com/zerjioang.png","language":"Go","readme":"\u003cp align=\"center\" style=\"text-align: center\"\u003e\n  \u003cimg alt=dotmap Logo\" src=\"./readme/default.png\" width=\"auto\" /\u003e\n  \u003ch3 align=\"center\"\u003e\u003cb\u003edotmap\u003c/b\u003e\u003c/h3\u003e\n  \u003cp align=\"center\"\u003eA Dot notation compatible concurrent safe Hashmap in pure Go\u003c/p\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/zerjioang/dotmap/blob/develop/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/License-GNU%20GPLv3-brightgreen.svg\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## Latest release\n\n[**Download**](https://github.com/zerjioang/dotmap/releases)\n\n## TL;DR\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/zerjioang/dotmap\"\n)\n\nfunc main(){\n\tmm := dotmap.New()\n\tmm.Reset(map[string]interface{}{\n\t\t\"foo\": \"bar\",\n\t\t\"enableDebug\": false,\n\t\t\"version\": 1.0,\n\t\t\"config\": map[string]interface{}{\n\t\t\t\"http\": 2,\n\t\t},\n\t})\n\tv, found := dotmap.GetDotMap(mm, \"config.http\")\n\tfmt.Println(\"key found: \", found)\n\tfmt.Println(\"key value: \", v)\n\tv2, found2 := dotmap.GetDotMap(mm, \"config.key\")\n\tfmt.Println(\"key found: \", found2)\n\tfmt.Println(\"key value: \", v2)\n}\n```\n\nand prints in terminal std out:\n\n```bash\nkey found:  true\nkey value:  2\nkey found:  false\nkey value:  \u003cnil\u003e\n```\n\n## Licenses\n\nAll rights reserved to @zerjioang under GNU GPL v3 license\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n * Uses GPLv3 license described below\n\nThis program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerjioang%2Fdotmap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzerjioang%2Fdotmap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerjioang%2Fdotmap/lists"}