{"id":19514250,"url":"https://github.com/nejcc/icepeak","last_synced_at":"2026-01-28T12:02:31.590Z","repository":{"id":257135792,"uuid":"857418732","full_name":"Nejcc/icepeak","owner":"Nejcc","description":"Go framework","archived":false,"fork":false,"pushed_at":"2024-09-14T19:17:58.000Z","size":34,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-01T18:39:12.895Z","etag":null,"topics":["framework","go","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/Nejcc.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":"2024-09-14T15:54:49.000Z","updated_at":"2024-09-17T07:51:49.000Z","dependencies_parsed_at":"2024-09-15T02:00:43.246Z","dependency_job_id":null,"html_url":"https://github.com/Nejcc/icepeak","commit_stats":null,"previous_names":["nejcc/icepea"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Nejcc/icepeak","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nejcc%2Ficepeak","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nejcc%2Ficepeak/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nejcc%2Ficepeak/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nejcc%2Ficepeak/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nejcc","download_url":"https://codeload.github.com/Nejcc/icepeak/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nejcc%2Ficepeak/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28845103,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T10:53:21.605Z","status":"ssl_error","status_checked_at":"2026-01-28T10:53:20.789Z","response_time":57,"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":["framework","go","golang"],"created_at":"2024-11-10T23:35:38.639Z","updated_at":"2026-01-28T12:02:31.563Z","avatar_url":"https://github.com/Nejcc.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Icepeak\n\n**Icepeak** is a lightweight, modular web framework written in Go. It provides a clean and flexible structure for building web applications with simplicity, performance, and ease of use in mind.\n\n## Features\n\n- **Routing**: Simple and intuitive routing system with support for dynamic parameters, middleware, and named routes.\n- **Middleware**: Easy-to-use middleware support for extending request/response handling.\n- **Modular Design**: Organized project structure with clear separation of concerns.\n- **High Performance**: Built on Go, leveraging its speed and concurrency model.\n\n## Getting Started\n\n### Prerequisites\n\n- Go 1.17 or higher\n\n### Installation\n\n1. **Clone the Repository:**\n\n   ```bash\n   git clone https://github.com/yourusername/icepeak.git\n   cd icepeak\n   ```\n\n2. **Initialize Go Modules:**\n\n   ```bash\n   go mod tidy\n   ```\n\n3. **Run the Application:**\n\n   ```bash\n   go run main.go\n   ```\n\n4. **Test the Routes:**\n\n   - Open your browser or use `curl` to test the routes:\n\n     ```bash\n     curl http://localhost:8080/\n     ```\n     Should return: `Welcome to Icepeak!`\n\n     ```bash\n     curl http://localhost:8080/hello\n     ```\n     Should return: `Hello, Icepeak!`\n\n## Project Structure\n\n```plaintext\nicepeak/\n├── app/\n│   ├── controllers/     # Application controllers\n│   ├── models/          # Application models\n│   ├── middlewares/     # Custom middlewares\n│   ├── views/           # Templating engine views (HTML, etc.)\n│   └── services/        # Business logic and service classes\n├── bootstrap/\n│   └── init.go          # Application initialization and bootstrap logic\n├── config/\n│   ├── app.yaml         # Application-level configuration (env, debug mode, etc.)\n│   ├── database.yaml    # Database configuration (connections, pools, etc.)\n│   └── routes.yaml      # Define application routes in a structured format\n├── core/\n│   ├── routing/         # Core routing logic (handling requests, parameters, etc.)\n│   ├── orm/             # Object Relational Mapping (ORM) layer\n│   ├── validation/      # Validation utilities\n│   ├── middleware/      # Core middlewares (like auth, CORS, etc.)\n│   ├── cache/           # Cache management (using in-memory, Redis, etc.)\n│   ├── logging/         # Logging utilities\n│   ├── response/        # HTTP response handling utilities\n│   └── utils/           # Generic utility functions (helpers)\n├── database/\n│   ├── migrations/      # Database migrations\n│   └── seeds/           # Database seeding\n├── public/\n│   └── assets/          # Static assets (CSS, JS, images)\n├── storage/\n│   ├── logs/            # Log files\n│   ├── uploads/         # User uploads or other files\n│   └── cache/           # Cached files\n├── tests/\n│   └── integration/     # Integration tests for the framework\n│   └── unit/            # Unit tests for framework components\n├── go.mod               # Go module file\n├── go.sum               # Dependency management file\n└── main.go              # Entry point of the framework\n```\n\n## Contributing\n\nFeel free to contribute to Icepeak! If you have suggestions or find any bugs, please open an issue or submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## What We Learn?\n\n- How to set up a basic web framework in Go.\n- How to handle routing, middleware, and dynamic requests.\n- How to structure a scalable and maintainable web application.\n\n---\n\n*Icepeak* is inspired by Laravel but built on the powerful Go language, aiming to provide a clean and efficient development experience!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnejcc%2Ficepeak","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnejcc%2Ficepeak","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnejcc%2Ficepeak/lists"}