{"id":28804506,"url":"https://github.com/oshinbiggestlab/counter_app","last_synced_at":"2026-04-16T08:32:37.332Z","repository":{"id":293186821,"uuid":"982459127","full_name":"OshinBiggestLab/counter_app","owner":"OshinBiggestLab","description":"Learning GenServer with Counter app","archived":false,"fork":false,"pushed_at":"2025-05-20T23:30:10.000Z","size":33434,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-21T00:29:50.319Z","etag":null,"topics":["css","elixir","frontend","genserver","html","phoenix-liveview","tailwind"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/OshinBiggestLab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-12T23:20:07.000Z","updated_at":"2025-05-20T23:30:14.000Z","dependencies_parsed_at":"2025-05-21T00:30:35.492Z","dependency_job_id":null,"html_url":"https://github.com/OshinBiggestLab/counter_app","commit_stats":null,"previous_names":["oshinbiggestlab/todo_app","oshinbiggestlab/counter_app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/OshinBiggestLab/counter_app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OshinBiggestLab%2Fcounter_app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OshinBiggestLab%2Fcounter_app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OshinBiggestLab%2Fcounter_app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OshinBiggestLab%2Fcounter_app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OshinBiggestLab","download_url":"https://codeload.github.com/OshinBiggestLab/counter_app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OshinBiggestLab%2Fcounter_app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260523585,"owners_count":23021968,"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","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":["css","elixir","frontend","genserver","html","phoenix-liveview","tailwind"],"created_at":"2025-06-18T09:03:57.110Z","updated_at":"2026-04-16T08:32:37.320Z","avatar_url":"https://github.com/OshinBiggestLab.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Counter App\n\n```\ndefmodule Counter.Server do\n  use GenServer\n\n  def start_link(initial) do\n    GenServer.start_link(__MODULE__, initial, name: __MODULE__)\n  end\nend\n```\n\nGenServer.start_link(\n__MODULE__, # (1) Your GenServer module (e.g. Counter.Server)\ninitial, # (2) The starting state passed to init/1\nname: **MODULE** # (3) Register the server using your module name\n)\n\nFirst __MODULE__ says:\n“I want to start a GenServer using my own module’s logic.”\nSecond __MODULE__ says:\n“Register me with this name so I can be called globally.”\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foshinbiggestlab%2Fcounter_app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foshinbiggestlab%2Fcounter_app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foshinbiggestlab%2Fcounter_app/lists"}