PerryTS/perry - Open Source PR Review Scorecard

A native TypeScript/JavaScript compiler written in Rust. Compiles TypeScript/JavaScript directly to executables using SWC and LLVM.

C-Rank Grade: S (Elite) - 78/100

External PR Merge Rate: 91%

Response Time: 12h

First Timer Success: 90%

Frequently Asked Questions

Is PerryTS/perry welcoming to first-time open-source contributors?

PerryTS/perry has a recorded first-timer success rate of 90.0%. Repositories ranked S typically provide actionable feedback during code reviews and actively nurture new community contributors.

How fast can I expect code review feedback on my pull request?

Maintainers in PerryTS/perry respond to incoming external pull requests in approximately 11.6 hours on average. Keeping PRs focused on single tasks and ensuring tests pass helps maintainers review faster.

What does the 78.4 C-Rank™ score (S Tier) represent?

The C-Rank™ system evaluates GitHub projects on a 0–100 scale using real data: PR merge rates, review turnaround time, active maintainer presence, and first-time contributor success. A score of 78.4 places PerryTS/perry in the S tier.

What is the external contributor pull request merge rate for PerryTS/perry?

The external contributor pull request merge rate for PerryTS/perry is 91.2%, based on public PR activity from non-core contributors.

Are there Good First Issues available in PerryTS/perry?

PerryTS/perry currently has 1 active issue(s) tagged with beginner-friendly labels like "good first issue", "beginner", or "up-for-grabs".

PerryTS
PerryTS/perrySElite4.7k
GitHub
Back to Explorer
PerryTS

PerryTS/perry

4,732
SElite(78/100)Rust

A native TypeScript/JavaScript compiler written in Rust. Compiles TypeScript/JavaScript directly to executables using SWC and LLVM.

Compare
Jump to:

AI Maintainer Review Guidelines

Review Persona

Welcoming Community Builder

Warmth Score
8.0/10
Patience Score
8.2/10
Nitpick Rate
45%

Collaborative maintainer environment in PerryTS/perry. Reviews community pull requests with focus on project quality.

Top PR Submission Do's

  • Ensure code complies with the project coding style
  • Keep PRs scoped to a single concern
  • Include context and link to the related issue

Top PR Friction Pitfalls (Don'ts)

  • Do not submit PRs without linking an issue
  • Do not break existing tests without fixing them
  • Do not mix unrelated refactors in a single PR
Response Velocity
11 hours
Standard maintainer review cycle

Average Response Latency

Tracks hours until a maintainer leaves a review, comment, or PR response.

Merge Efficiency
91.2%
High acceptance rate for external PRs

External Acceptance Rate

Percentage of community pull requests successfully merged into main.

First-Timer Success
90.0%
Strong first-timer PR acceptance rate

First PR Conversion

Rate at which developers submitting their first repository PR succeed.

Active Maintainers
5 core
Small core review team
Diagnostic Health HUD
91.2%
Merge Gauge
90.0%
1st-Timer
Community Vibe85/100

Embed C-Rank Badge

Show contributors that your repository actively reviews and merges external pull requests.

GetMerged C-Rank badge for PerryTS/perry
[![GetMerged C-Rank](https://getmerged.abhishekco.de/api/badge/PerryTS/perry)](https://getmerged.abhishekco.de/PerryTS/perry?utm_source=github&utm_medium=badge)

Active Good First Issues (2)

View on GitHub

Summary Add an opt-in WinUI 3 / Fluent rendering backend for Windows, selectable via --target windows-winui, alongside the existing Win32/GDI backend (crates/perry-ui-windows). Motivation from discussion #3486: the current Win32/GDI output looks dated (boxy, flat, no animation, Win7-era controls). WinUI 3 brings Fluent Design — rounded corners, Mica/Acrylic materials, smooth animations, modern typography, crisp auto-DPI — and is the closest Windows analog to our iOS/Android look-and-feel. Scope / decisions Opt-in, not the default. WinUI 3 requires the WinAppSDK runtime + an MSIX/bootstrapper packaging story, which conflicts with Perry's single-native-.exe model. Keep Win32 as the default target; expose WinUI via --target windows-winui. Mirrors how we ship multiple Apple targets. No new "UI framework" dependency confusion: microsoft/windows-rs (already a dep, windows = "0.58") is the WinRT projection crate, not a UI lib. WinUI from Rust = driving WinAppSDK + XAML through the WinRT

📅 Opened Jun 6, 2026💬 4 comments
Quality: 40/100Contribute

The problem Some developers prefer to use signals for UI updates rather than React with its heavy-handed virtual DOM / diff algorithm. SolidJS is the fastest renderer out there -- a nice fit with perry/ui on mobile devices where speed and small memory footprint are desired. Proposed solution The SolidJS package is not tied to a web DOM renderer and is used by other non-web frameworks to generate a native UI. To implement this, you can use SolidJS with a universal renderer and only have to implement the following: createElement(string) { return document.createElement(string); }, createTextNode(value) { return document.createTextNode(value); }, replaceText(textNode, value) { textNode.data = value; }, setProperty(node, name, value) { if (name === "style") Object.assign(node.style, value); else if (name.startsWith("on")) node[name.toLowerCase()] = value; else if (PROPERTIES.has(name)) node[name] = value; else node.setAttribute(name, value); }, insertNode(parent, node, anchor)

📅 Opened Jun 6, 2026💬 1 comment
Quality: 40/100Contribute
Looking for more Rust beginner tasks?Explore Rust GFI

Contributor Community Vibe Feedback

Rate what actually matters after opening a pull request here.

Have you contributed to this repo?

Rate your first-hand PR experience (review speed, maintainer responsiveness, and onboarding ease) to help other contributors.

3 ratings required
Maintainer helpfulness
Review speed
Beginner friendliness

Contributor Compatibility & Review Speed Analysis for PerryTS/perry

When evaluating whether to contribute to PerryTS/perry, response velocity and maintainer engagement are crucial. GetMerged continuously tracks pull request trajectories, first-comment latency, and code review rounds to help developers avoid submitting pull requests to backlogged repositories.

Currently, maintainers of PerryTS/perry acknowledge new external contributions in approximately 11 hours. Out of all submitted pull requests from non-core authors in the last 180-day window, 91.2% were successfully merged into the primary branch.

Frequently Asked Questions - Contributing to PerryTS/perry

01

Is PerryTS/perry welcoming to first-time open-source contributors?

PerryTS/perry has a recorded first-timer success rate of 90.0%. Repositories ranked Elite typically provide actionable feedback during code reviews and actively nurture new community contributors.

02

How fast can I expect code review feedback on my pull request?

The initial maintainer response time averages ~11 hours. Keeping PRs scoped to single concerns and ensuring CI checks succeed will optimize review turnaround.

03

What does the 78.4 C-Rank™ score represent?

The C-Rank™ index scores repositories on a 0 to 100 scale using an objective formula: external PR merge rates, initial response speed, active maintainer count, and first-time contributor retention. A score of 78.4 places PerryTS/perry in the Elite tier.

04

What is the external contributor pull request merge rate for PerryTS/perry?

The external pull request merge rate is 91.2%. GetMerged isolates non-core community contributions so external developers get an accurate benchmark of PR acceptance probability.

05

Are there beginner Good First Issues open in PerryTS/perry?

Yes, PerryTS/perry currently has 1 active issue(s) tagged with beginner-friendly labels. You can inspect these directly from the repository issues tab.

GetMerged C-Rank™ Indexing Standard

All metrics displayed for PerryTS/perry are automatically retrieved via the public GitHub API and recalculated daily. Insider pull requests submitted by repository owners or organization members are excluded from merge rate calculations to preserve objective external contributor statistics.