{"id":51609547,"url":"https://github.com/kirinyoku/go-for-backend","last_synced_at":"2026-07-12T06:01:56.595Z","repository":{"id":368858034,"uuid":"1287148047","full_name":"kirinyoku/go-for-backend","owner":"kirinyoku","description":"Structured material on using Go in backend development, with a focus on the standard library.","archived":false,"fork":false,"pushed_at":"2026-07-02T13:01:21.000Z","size":210,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-02T15:03:04.993Z","etag":null,"topics":["backend","backend-dev","backend-development","documentation","free-courses","go","golang","learning","net-http","standard-library"],"latest_commit_sha":null,"homepage":"https://kirinyoku.github.io/go-for-backend/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kirinyoku.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-07-02T12:26:33.000Z","updated_at":"2026-07-02T13:02:10.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kirinyoku/go-for-backend","commit_stats":null,"previous_names":["kirinyoku/go-for-backend"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/kirinyoku/go-for-backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirinyoku%2Fgo-for-backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirinyoku%2Fgo-for-backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirinyoku%2Fgo-for-backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirinyoku%2Fgo-for-backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kirinyoku","download_url":"https://codeload.github.com/kirinyoku/go-for-backend/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirinyoku%2Fgo-for-backend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35383520,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-12T02:00:06.386Z","response_time":87,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["backend","backend-dev","backend-development","documentation","free-courses","go","golang","learning","net-http","standard-library"],"created_at":"2026-07-12T06:01:55.701Z","updated_at":"2026-07-12T06:01:56.572Z","avatar_url":"https://github.com/kirinyoku.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go for Backend Development\n\n[![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/)\n\nStructured material on using Go in backend development, with a focus on the standard library\n\n🌐 **[Read online →](https://kirinyoku.github.io/go-for-backend/)**\n\n---\n\n## Running Locally\n\n```bash\ngit clone https://github.com/kirinyoku/go-for-backend.git\ncd go-for-backend\nnpm install\nnpm run docs:dev\n```\n\nThe dev server starts at `http://localhost:5173/go-for-backend/`.\n\n**Requirements:** Node.js 18+\n\n---\n\n## Repository Structure\n\nContent is organized across four levels:\n\n- **Language** — each language has its own top-level directory. Right now those are `en/` and `ru/`, and they follow the same structure. New language versions can be added later without changing the overall layout.\n- **Topic** — each subdirectory inside a language folder covers a specific backend topic. Currently each topic maps to a single standard library package, but that is not a hard constraint.\n- **Chapter** — each topic is split into numbered chapters (e.g., `1. Introduction/`, `2. HTTP Server/`), grouping related articles by theme.\n- **Article** — each chapter contains individual Markdown files, one per article (e.g., `1.1 Connection Lifecycle.md`).\n\n```\n.\n├── en/                                       # Language version\n│   └── net-http/                             # Topic\n│       ├── 1. Introduction/                  # Chapter\n│       │   ├── 1.1 Connection Lifecycle.md   # Article\n│       │   └── ...\n│       ├── 2. HTTP Server/\n│       ├── 3. HTTP Client/\n│       └── 4. Testing/\n├── ru/                                       # Language version\n├── .vitepress/\n│   └── config.mjs                   # VitePress configuration: nav, sidebar, rewrites\n└── public/                          # Static assets\n```\n\n---\n\n## Contributing\n\nIf you found a mistake, an inaccuracy, or an explanation that could be clearer — feel free to open an issue or a pull request.\n\n**Issues** are the right place for:\n- Factual errors or outdated information\n- Code examples that don't compile or produce wrong results\n- Unclear explanations worth discussing before rewriting\n\n**Pull requests** are welcome for:\n- Typos and grammar fixes\n- Correcting code examples\n- Small wording improvements\n\nFor anything larger — a new article, a structural change, or a new section — please open an issue first. This avoids effort going in a direction that doesn't fit the project.\n\n---\n\n## License\n\nPublished under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkirinyoku%2Fgo-for-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkirinyoku%2Fgo-for-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkirinyoku%2Fgo-for-backend/lists"}