kotlin/kotlinx.coroutines

Library support for Kotlin coroutines

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 53 minutes ago
Added to GitGenius on September 4th, 2026
Created on June 22nd, 2016
Open Issues & Pull Requests: 343 (+0)
GitHub issues: Enabled
Number of forks: 1,948
Total Stargazers: 13,814 (+0)
Total Subscribers: 290 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 15.8 hours
Mean response time: 72.3 days
90th percentile: 111.2 days
Tracked items: 301

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 74% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "design" is answered fastest, typically in about 3 hours, while "debug" waits about 5 days. Only 3% of issues opened in the past year have been closed. Three people close 83% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 135
New in 7 days: 2
Closed in 7 days: 1
Avg open age: 1,048 days
Stale 30+ days: 118
Stale 90+ days: 94

Recent activity

Opened in 7 days: 2
Closed in 7 days: 1
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • bug (84)
  • enhancement (79)
  • flow (38)
  • question (29)
  • design (27)
  • waiting for clarification (21)
  • docs (19)
  • test (19)

Detailed Description

kotlinx.coroutines is a library that provides structured concurrency support for Kotlin with multiplatform capabilities across JVM, JavaScript, WebAssembly, and native platforms.

The library addresses the challenge of writing asynchronous code by offering coroutines as lightweight abstractions that can be suspended and resumed without blocking threads. It provides coroutine builders like launch and async that return Job and Deferred objects with built-in cancellation support, multiple dispatchers for different execution contexts, and Flow for cold asynchronous streams with a comprehensive operator set. The core module includes synchronization primitives such as Channel, Mutex, and Semaphore, scope builders for structured concurrency like coroutineScope and supervisorScope, and exception handling through SupervisorJob and CoroutineExceptionHandler.

Adoption suits projects requiring concurrent operations across multiple platforms. The JVM module adds an IO dispatcher for blocking operations and integrations with CompletableFuture. The JavaScript and WebAssembly modules integrate with Promise and browser APIs. The test module provides utilities like runTest and TestScope for testing suspending functions, while the debug module offers DebugProbes for tracking active coroutines and automatic BlockHound integration. The library also includes reactive stream adapters for Reactive Streams, RxJava 2.x, RxJava 3.x, and Project Reactor, plus UI dispatcher support for Android, JavaFX, and Swing.

Development activity shows consistent engagement with the core library receiving regular updates and maintenance. The project maintains multiple specialized modules addressing different platform requirements and integration scenarios, indicating sustained effort to support diverse use cases. Test utilities and debugging tools are actively maintained as first-class components rather than afterthoughts. Integration modules for reactive libraries and callback-based frameworks suggest the project responds to ecosystem needs and maintains compatibility with established patterns in the Kotlin community.