{"id":15069194,"url":"https://github.com/vegidio/klopik","last_synced_at":"2026-02-02T16:42:56.841Z","repository":{"id":228650684,"uuid":"774065993","full_name":"vegidio/klopik","owner":"vegidio","description":"A batteries-included HTTP client for Kotlin Multiplatform","archived":false,"fork":false,"pushed_at":"2024-06-24T07:37:37.000Z","size":1435,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-21T23:35:16.260Z","etag":null,"topics":["android","http-client","ios","jvm","kmp","kotlin-multiplatform","linux","macos","windows"],"latest_commit_sha":null,"homepage":"https://vegidio.github.io/klopik","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vegidio.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}},"created_at":"2024-03-18T22:10:08.000Z","updated_at":"2025-06-20T04:15:59.000Z","dependencies_parsed_at":"2024-03-19T20:54:41.239Z","dependency_job_id":"5a58aa08-bedf-4b2e-81db-2bafd0de4854","html_url":"https://github.com/vegidio/klopik","commit_stats":null,"previous_names":["vegidio/klopik"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/vegidio/klopik","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegidio%2Fklopik","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegidio%2Fklopik/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegidio%2Fklopik/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegidio%2Fklopik/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vegidio","download_url":"https://codeload.github.com/vegidio/klopik/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegidio%2Fklopik/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261211684,"owners_count":23125543,"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":["android","http-client","ios","jvm","kmp","kotlin-multiplatform","linux","macos","windows"],"created_at":"2024-09-25T01:40:57.489Z","updated_at":"2026-02-02T16:42:56.799Z","avatar_url":"https://github.com/vegidio.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# klopik\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"docs/images/klopik.avif\" width=\"320\" alt=\"Klopik HTTP\"/\u003e\n\u003cbr/\u003e\n\u003cstrong\u003eKlopik\u003c/strong\u003e is a batteries-included HTTP client for \u003ca href=\"https://github.com/Kotlin/multiplatform-library-template\" target=\"_blank\"\u003eKotlin Multiplatform\u003c/a\u003e.\n\u003cbr/\u003e\nIt supports the following targets/platforms:\n\u003cbr/\u003e\u003cbr/\u003e\n\u003cimg src=\"https://img.shields.io/badge/JVM-7F52FF?\u0026style=for-the-badge\u0026logo=kotlin\u0026logoColor=white\"/\u003e\n\u003cimg src=\"https://img.shields.io/badge/Android-34A853?style=for-the-badge\u0026logo=android\u0026logoColor=white\"/\u003e\n\u003cimg src=\"https://img.shields.io/badge/iOS-FFFFFF?style=for-the-badge\u0026logo=apple\u0026logoColor=black\"/\u003e\n\u003cimg src=\"https://img.shields.io/badge/macOS-000000?style=for-the-badge\u0026logo=macos\u0026logoColor=white\"/\u003e\n\u003cimg src=\"https://img.shields.io/badge/Linux-FCC624?style=for-the-badge\u0026logo=linux\u0026logoColor=black\"/\u003e\n\u003cimg src=\"https://img.shields.io/badge/Windows-0078D4?style=for-the-badge\u0026logo=windows\u0026logoColor=white\"/\u003e\n\u003c/p\u003e\n\n## ❓ Why?\n\nThe Kotlin Multiplatform ecosystem is still in its early days, and there are not many HTTP client libraries available that support all platforms. Actually the only option available right now is [Ktor](https://ktor.io), which is a great library, but it's not as simple as I would like it to be.\n\nThere are two main reasons why I created **Klopik**:\n\n1. **Simplicity**: I wanted to create a library that is simple to install and use. Ktor requires the developer to install the core library and then add the platform-specific dependencies. With **Klopik** you just need to add a single dependency to your project.\n\n2. **HTTPS support in all targets**: At the time of this writing, Ktor HTTPS support on Linux is not great. The two Ktor engines available for Linux, CIO and Curl, don't support HTTPS or don't support the architecture ARM64. **Klopik** supports HTTPS in all platforms and architectures.\n\n## ⬇️ Installation\n\n**Klopik** is hosted in my own Maven repository, so before using it in your project you must add the repository `https://maven.vinicius.io` to your `settings.gradle.kts` file:\n\n```kotlin\ndependencyResolutionManagement {\n    repositories {\n        google()\n        mavenCentral()\n        maven(\"https://maven.vinicius.io\")\n    }\n}\n```\n\nWith the repository added, you just need to include the dependency in the file `build.gradle.kts`:\n\n```kotlin\ndependencies {\n    implementation(\"io.vinicius.klopik:klopik:24.5.1\")\n}\n```\n\n## 🤖 Usage\n\nPlease visit the library's [website](https://vegidio.github.io/klopik) to find detailed instructions on how to use it in your project.\n\n## 📝 License\n\n**Klopik** is released under the MIT License. See [LICENSE](LICENSE) for details.\n\n## 👨🏾‍💻 Author\n\nVinicius Egidio ([vinicius.io](http://vinicius.io))\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvegidio%2Fklopik","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvegidio%2Fklopik","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvegidio%2Fklopik/lists"}