{"id":28260219,"url":"https://github.com/royroki/notetaker","last_synced_at":"2026-01-20T16:25:47.251Z","repository":{"id":281142913,"uuid":"943296221","full_name":"RoyRoki/NoteTaker","owner":"RoyRoki","description":"NoteTaker - A simple Go-based backend demonstration for beginners, following Clean Architecture principles.ckend demonstration for beginners, following Clean Architecture principles.","archived":false,"fork":false,"pushed_at":"2025-04-04T20:20:46.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-12T13:07:22.556Z","etag":null,"topics":["api","backend","beginner-project","clean-architecture","go-backend","golang"],"latest_commit_sha":null,"homepage":"","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/RoyRoki.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}},"created_at":"2025-03-05T13:34:07.000Z","updated_at":"2025-04-13T13:00:34.000Z","dependencies_parsed_at":"2025-03-07T08:36:40.569Z","dependency_job_id":null,"html_url":"https://github.com/RoyRoki/NoteTaker","commit_stats":null,"previous_names":["royroki/notetacker","royroki/notetaker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RoyRoki/NoteTaker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoyRoki%2FNoteTaker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoyRoki%2FNoteTaker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoyRoki%2FNoteTaker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoyRoki%2FNoteTaker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RoyRoki","download_url":"https://codeload.github.com/RoyRoki/NoteTaker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoyRoki%2FNoteTaker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607015,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"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":["api","backend","beginner-project","clean-architecture","go-backend","golang"],"created_at":"2025-05-20T04:09:37.156Z","updated_at":"2026-01-20T16:25:47.235Z","avatar_url":"https://github.com/RoyRoki.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📝 NoteTaker\n\n![Go](https://img.shields.io/badge/Go-1.21-blue?style=for-the-badge\u0026logo=go)\n![Clean Architecture](https://img.shields.io/badge/Clean--Architecture-%F0%9F%92%AA-blueviolet?style=for-the-badge)\n![SOLID](https://img.shields.io/badge/SOLID-Principles-ff69b4?style=for-the-badge)\n![License](https://img.shields.io/github/license/RoyRoki/NoteTaker?style=for-the-badge)\n\nA simple and modular 🧱 **Go-based Note Taking API** built with:\n\n- 💎 **Clean Architecture**\n- 💡 **SOLID Principles**\n- 🧪 **Testable structure**\n- 🗃️ SQLite (can be easily swapped)\n- ⚙️ Dependency Injection for better maintainability\n- 🌐 Simple REST API\n\n---\n\n## 📽️ Demo\n\nCheck out a quick walkthrough of the project setup and code structure:\n\n[![NoteTaker Demo](https://img.youtube.com/vi/C6deIp21r5E/0.jpg)](https://youtu.be/C6deIp21r5E?si=LDtkRswd7m7gnUbH)\n\n---\n\n## 📦 Project Structure\n\n```bash\n.\n├── cmd                # App entrypoint\n│   └── server         # Main server file\n├── commons            # Shared utilities (config, logging, DB, etc.)\n├── modules\n│   └── notes\n│       ├── data       # Data layer (models, datasource, impls)\n│       ├── domain     # Domain layer (interfaces, usecases)\n│       ├── di         # Dependency injection\n│       └── presentation # HTTP controllers and routers\n├── test.html          # Quick test UI (excluded from stats)\n├── notes.db           # SQLite database file\n└── README.md          # You're here!\n```\n\n---\n\n## 🧠 Key Concepts\n\n### 🧼 Clean Architecture\n\n- Separated concerns across data, domain, and presentation\n- Easily testable and scalable\n\n### 🧱 SOLID Principles\n\n- Each layer has a single responsibility\n- Interfaces are implemented explicitly\n- High-level code is decoupled from low-level details\n\n---\n\n## 🚀 Getting Started\n\n### 1. Clone the repo\n\n```bash\ngit clone https://github.com/RoyRoki/NoteTaker.git \u0026\u0026 cd NoteTaker\n```\n\n### 2. Run the server\n\n```bash\ngo run cmd/server/main.go\n```\n\n### 3. Access the API\n\n```bash\nGET     /notes\nPOST    /notes\nPUT     /notes/:id\nDELETE  /notes/:id\n```\n\nYou can use `test.html` locally to quickly test endpoints.\n\n---\n\n## 🛠️ Tech Stack\n\n- Go 🐹\n- SQLite 🛢️\n- chi router 🧭\n- sqlx (optionally pluggable)\n\n---\n\n## 🤝 Contributions\n\nPRs and stars are welcome! ⭐ If you're interested in Clean Architecture or Go backend design, this project is a great starting point!\n\n---\n\n## 📄 License\n\nROCKET © [RoyRoki](https://github.com/RoyRoki)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froyroki%2Fnotetaker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froyroki%2Fnotetaker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froyroki%2Fnotetaker/lists"}