{"id":17649245,"url":"https://github.com/kenanbek/go-memui","last_synced_at":"2026-01-27T13:33:25.342Z","repository":{"id":45092128,"uuid":"442484463","full_name":"KenanBek/go-memui","owner":"KenanBek","description":"JSON API for in-memory objects. An experimental Go-lang project.","archived":false,"fork":false,"pushed_at":"2022-01-10T21:32:01.000Z","size":192,"stargazers_count":3,"open_issues_count":6,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-01T14:09:22.824Z","etag":null,"topics":["go","golang","in-memory","json","json-api"],"latest_commit_sha":null,"homepage":"https://bit.ly/go-memui","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KenanBek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["KenanBek"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://www.paypal.me/KananRahimov","https://www.codervlogger.com/#/portal/signup"]}},"created_at":"2021-12-28T14:14:31.000Z","updated_at":"2022-02-08T22:35:52.000Z","dependencies_parsed_at":"2022-09-18T04:52:56.767Z","dependency_job_id":null,"html_url":"https://github.com/KenanBek/go-memui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KenanBek/go-memui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KenanBek%2Fgo-memui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KenanBek%2Fgo-memui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KenanBek%2Fgo-memui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KenanBek%2Fgo-memui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KenanBek","download_url":"https://codeload.github.com/KenanBek/go-memui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KenanBek%2Fgo-memui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28813539,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"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":["go","golang","in-memory","json","json-api"],"created_at":"2024-10-23T11:25:07.878Z","updated_at":"2026-01-27T13:33:25.328Z","avatar_url":"https://github.com/KenanBek.png","language":"Go","funding_links":["https://github.com/sponsors/KenanBek","https://www.paypal.me/KananRahimov","https://www.codervlogger.com/#/portal/signup"],"categories":[],"sub_categories":[],"readme":"# Go MemUI\n\n\u003e 👨🏼‍💻 Work in progress\n\n*go-memu* - is in-memory object storage which can generate an automated JSON API for added values.\n\n📚 It is an experimental Open Source Go package for learning purposes.\n\n## ℹ️ Learning Materials\n\nThe whole development process is available as a step-by-step tutorial series. You can check the video course here:\n\n#### [⚓️ Building Go-MemUI Project](https://bit.ly/go-memui)\n\n## 📜 How to use?\n\n![go-memui demo](docs/demo.gif \"JSON API for in-memory objects. An experimental Go-lang project. \")\n\n#### How to install?\n\nUse go get to install the latest version of the package:\n\n```sh\ngo get github.com/kenanbek/go-memui\n```\n\nThen, import `go-memui` in your project:\n\n```go\nimport \"github.com/KenanBek/go-memui\"\n```\n\nPlease note that when using `go-memui` in the source code, Go will drop the `go-` part and let you use only `memui`. See the example below.\n\n#### Example:\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\n\t\"github.com/KenanBek/go-memui\"\n)\n\n...\n\nfunc main() {\n\tfmt.Println(\"Hello, World!\")\n\n\td1 := Department{Name: \"IT\"}\n\td2 := Department{Name: \"HR\"}\n\n\tp1 := Person{\"John\", 30, \u0026d1}\n\tp2 := Person{\"Mary\", 25, \u0026d2}\n\n\tmui := memui.New()\n\n\terr := mui.Register(\u0026p1, \u0026p2, \u0026d1, \u0026d2)\n\tif err != nil {\n\t\tfmt.Println(err)\n\t}\n\n\tlog.Fatalln(mui.ServerHTTP())\n}\n```\n\nSee the `testapp` folder for detailed examples.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenanbek%2Fgo-memui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkenanbek%2Fgo-memui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenanbek%2Fgo-memui/lists"}