{"id":26057338,"url":"https://github.com/karmakrafts/kmmio","last_synced_at":"2026-05-11T23:08:08.905Z","repository":{"id":269708614,"uuid":"885598619","full_name":"karmakrafts/kMMIO","owner":"karmakrafts","description":"Lightweight MMIO for Kotlin Multiplatform.","archived":false,"fork":false,"pushed_at":"2026-01-31T23:58:39.000Z","size":394,"stargazers_count":18,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-01T10:56:30.384Z","etag":null,"topics":["api","kotlin","kotlin-library","kotlin-multiplatform","kotlin-native","library","linux","macos","memory","memory-management","memory-mapped-file","memory-mapping","mingw","mmio","osx","windows"],"latest_commit_sha":null,"homepage":"https://git.karmakrafts.dev/kk/kmmio","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/karmakrafts.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2024-11-08T22:56:16.000Z","updated_at":"2026-01-31T23:58:43.000Z","dependencies_parsed_at":"2025-02-16T01:18:58.219Z","dependency_job_id":"c965efc8-8fb8-420e-91fa-7e0060dfdd4f","html_url":"https://github.com/karmakrafts/kMMIO","commit_stats":null,"previous_names":["karmakrafts/multiplatform-mman","karmakrafts/kmmio"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/karmakrafts/kMMIO","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karmakrafts%2FkMMIO","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karmakrafts%2FkMMIO/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karmakrafts%2FkMMIO/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karmakrafts%2FkMMIO/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/karmakrafts","download_url":"https://codeload.github.com/karmakrafts/kMMIO/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karmakrafts%2FkMMIO/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28984837,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T17:52:09.146Z","status":"ssl_error","status_checked_at":"2026-02-01T17:49:53.529Z","response_time":56,"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","kotlin","kotlin-library","kotlin-multiplatform","kotlin-native","library","linux","macos","memory","memory-management","memory-mapped-file","memory-mapping","mingw","mmio","osx","windows"],"created_at":"2025-03-08T11:08:30.948Z","updated_at":"2026-05-11T23:08:08.885Z","avatar_url":"https://github.com/karmakrafts.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kMMIO\n\n[![](https://git.karmakrafts.dev/kk/kmmio/badges/master/pipeline.svg)](https://git.karmakrafts.dev/kk/kmmio/-/pipelines)\n[![](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Frepo.maven.apache.org%2Fmaven2%2Fdev%2Fkarmakrafts%2Fkmmio%2Fkmmio-core%2Fmaven-metadata.xml\n)](https://git.karmakrafts.dev/kk/kmmio/-/packages)\n[![](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fdev%2Fkarmakrafts%2Fkmmio%2Fkmmio-core%2Fmaven-metadata.xml\n)](https://git.karmakrafts.dev/kk/kmmio/-/packages)\n[![](https://img.shields.io/badge/2.3.21-blue?logo=kotlin\u0026label=kotlin)](https://kotlinlang.org/)\n[![](https://img.shields.io/badge/documentation-black?logo=kotlin)](https://docs.karmakrafts.dev/kmmio-core)\n\nLightweight memory mapped IO for Kotlin Multiplatform on JVM, Android and native.  \nIf you need random access on big files, this is the library you're looking for!\n\nThis library also comes with [kotlinx.io](https://github.com/Kotlin/kotlinx-io) integration out of the box.\n\n### How to use it\n\nFirst, add the official Maven Central repository to your settings.gradle.kts:\n\n```kotlin\ndependencyResolutionManagement {\n    repositories {\n        mavenCentral()\n    }\n}\n```\n\nThen add a dependency on the library in your buildscript:\n\n```kotlin\nkotlin {\n    sourceSets {\n        commonMain {\n            dependencies {\n                implementation(\"dev.karmakrafts.kmmio:kmmio-core:\u003cversion\u003e\")\n            }\n        }\n    }\n}\n```\n\n### Code example\n\n```kotlin\nfun main() {\n    VirtualMemory(4096, path).use {\n        it.source() // Consume data through a kotlinx.io.Source\n        it.sink() // Produce data through a kotlinx.io.Sink\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkarmakrafts%2Fkmmio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkarmakrafts%2Fkmmio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkarmakrafts%2Fkmmio/lists"}