mozilla/rhino

Rhino is an open-source implementation of JavaScript written entirely in Java

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 22 minutes ago
Added to GitGenius on September 14th, 2026
Created on May 12th, 2011
Open Issues & Pull Requests: 331 (+0)
GitHub issues: Enabled
Number of forks: 934
Total Stargazers: 4,627 (+1)
Total Subscribers: 168 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 23.5 hours
Mean response time: 159.9 days
90th percentile: 613.6 days
Tracked items: 177

Most active contributors

Sign in to see contributor activity.

How this project is maintained

About 12% of issues opened in the past year have never received a reply. 72% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "bug" is answered fastest, typically in about 7 days, while "feature" waits about 13 months. Only 46% of issues opened in the past year have been closed. Three people close 71% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 104
New in 7 days: 1
Closed in 7 days: 0
Avg open age: 887 days
Stale 30+ days: 98
Stale 90+ days: 97

Recent activity

Opened in 7 days: 1
Closed in 7 days: 0
Comments in 7 days: 12
Events in 7 days: 18

Top labels

  • Ecma Incompatibility (53)
  • feature (34)
  • bug (24)
  • good first issue (16)
  • enhancement (7)
  • Java Interop (5)
  • Regression (5)
  • Android (4)

Detailed Description

Rhino is a JavaScript engine that implements the JavaScript language entirely in Java.

Rhino solves the problem of executing JavaScript code within Java applications and environments where a native JavaScript runtime is unavailable or impractical. It parses and interprets JavaScript source code, compiling it to Java bytecode for execution on the Java Virtual Machine. This approach allows developers to embed dynamic scripting capabilities directly into Java programs without external dependencies.

Rhino suits projects that need to execute untrusted or user-provided scripts within a Java application, integrate JavaScript logic into Java backends, or support scripting in Java-based tools and frameworks. It is particularly valuable for applications requiring a sandboxed execution environment where JavaScript can interact with Java objects and methods. The tool provides a compatibility table documenting support for ES6 and later JavaScript features, allowing developers to assess whether their target language features are available.

The project maintains a regular release cadence with multiple releases per year. Development activity shows consistent engagement with both new features and maintenance updates across the codebase. The project requires Java 17 or higher to run and Java 21 or higher to build, with Java 25 recommended for development.