killme2008/aviatorscript

A high performance scripting language hosted on the JVM.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 32 minutes ago
Added to GitGenius on September 13th, 2026
Created on March 29th, 2011
Open Issues & Pull Requests: 76 (+0)
GitHub issues: Enabled
Number of forks: 906
Total Stargazers: 5,244 (+0)
Total Subscribers: 171 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 5.9 days
Mean response time: 89.9 days
90th percentile: 202.2 days
Tracked items: 53

Most active contributors

Sign in to see contributor activity.

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 97% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 11% of issues opened in the past year have been closed. Three people close 86% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 31
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 473 days
Stale 30+ days: 30
Stale 90+ days: 28

Recent activity

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

Top labels

  • bug (1)

Detailed Description

AviatorScript is a high-performance scripting language hosted on the JVM.

AviatorScript addresses the need for dynamic script execution within Java applications without the overhead of heavier language runtimes. It compiles scripts to JVM bytecode in ASM mode for performance, or runs in interpretation mode for compatibility with non-standard Java platforms like Android. The language supports first-class functions, closures, and functional programming patterns alongside traditional imperative syntax. It includes built-in types for arbitrary-precision arithmetic (bigint and decimal) with operator overloading, a module system, and comprehensive Java interoperability through multiple calling conventions and the Java Scripting API.

The tool suits projects requiring rule engines, formula evaluation, dynamic control flow, or collection data transformation. It is designed to work both as a lightweight expression evaluator and as a full-featured scripting sandbox with customizable restrictions. The interpretation mode makes it viable for environments where standard Java bytecode compilation is unavailable. The project supports compiled script serialization for caching and execution timeouts to prevent resource exhaustion from untrusted scripts.

Development activity shows consistent maintenance with regular updates and bug fixes. The project maintains active CI/CD pipelines and publishes releases to standard Java package repositories. Documentation is comprehensive and available in multiple languages, reflecting ongoing effort to serve a broad user base. The codebase demonstrates attention to performance optimization and platform compatibility across different Java environments.