wren-lang/wren

The Wren Programming Language. Wren is a small, fast, class-based concurrent scripting language.

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 55 minutes ago
Added to GitGenius on September 8th, 2026
Created on November 19th, 2013
Open Issues & Pull Requests: 272 (+0)
GitHub issues: Enabled
Number of forks: 632
Total Stargazers: 8,129 (+0)
Total Subscribers: 155 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 3.0 hours
Mean response time: 3.9 days
90th percentile: 33.0 hours
Tracked items: 26

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 100% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 4% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 26
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 760 days
Stale 30+ days: 26
Stale 90+ days: 26

Recent activity

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

Top labels

  • enhancement (2)
  • vm (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Wren is a small, fast, class-based concurrent scripting language designed for embedding in applications.

Wren addresses the need for a lightweight, readable scripting runtime that combines familiar object-oriented design with modern concurrency primitives. The language compiles to bytecode through a single-pass compiler and executes on a compact VM, achieving performance competitive with other dynamic languages while maintaining a codebase small enough to understand in an afternoon. Its core execution model centers on lightweight fibers that enable programs to be structured as communicating coroutines, drawing inspiration from Smalltalk's object model, Lua's minimalism, and Erlang's concurrency approach.

Wren suits projects that need an embeddable scripting layer without external dependencies. The language is intentionally designed for integration into host applications through a C API, compiles cleanly as C99 and later standards, and includes a deliberately minimal standard library. This makes it appropriate for game engines, configuration systems, and other applications where a self-contained scripting runtime is preferable to larger alternatives. The class-based object model distinguishes it from prototype-based scripting languages, appealing to developers who prefer explicit class definitions and familiar OOP semantics.

The project maintains steady development with regular commits addressing bug fixes, feature refinements, and documentation improvements. The codebase demonstrates consistent attention to code quality through comprehensive commenting and readable implementation choices. Community engagement occurs through issue discussions and pull request reviews, with maintainers actively responding to user questions and contributions. The project sustains a stable feature set while remaining open to enhancements that align with its core design philosophy of simplicity and embeddability.