Java JavaScript

Open-source Java projects categorized as JavaScript

Top 23 Java JavaScript Projects

  1. Selenium WebDriver

    A browser automation framework and ecosystem.

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. conductor

    Conductor is an event driven agentic workflow engine providing durable and highly resilient execution engine for applications and AI Agents

    Project mention: Conductor, an orchestration engine for microservices and event-driven workflows | news.ycombinator.com | 2025-10-05
  4. ANTLR

    ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files.

    Project mention: RCParsing VS ANTLR - a user suggested alternative | libhunt.com/r/RCParsing | 2025-09-19

    ANTLR is a lexer-based, powerful tool for creating own DSL and analyzing them. But it's and overkill for simple languages (JSON, for example), while RCParsing is good for both complex and simple languages, allows you to choose: work with AST or immediately calculate value while parsing.

  5. aws-doc-sdk-examples

    Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.

    Project mention: Send Email using aws-v2.sesv2 on golang | dev.to | 2025-08-20
  6. QR-Code-generator

    High-quality QR Code generator library in Java, TypeScript/JavaScript, Python, Rust, C++, C.

    Project mention: Fully vector QR codes with an SVG logo in React (download as scalable SVG) | dev.to | 2026-06-08

    That's what react-quick-response does. It renders the QR code as SVG (the encoding is handled by Project Nayuki's well-known QR Code generator library, bundled in — no extra runtime dependency), and it lets you pass an SVG logo as a child that stays vector too.

  7. Zeppelin

    Web-based notebook that enables data-driven, interactive data analytics and collaborative documents with SQL, Scala and more.

    Project mention: Woxi: Wolfram Mathematica Reimplementation in Rust | news.ycombinator.com | 2026-02-25

    I wonder if it would make a good Zeppelin interpreter. https://zeppelin.apache.org/

  8. spotless

    Keep your code spotless

    Project mention: The Judgement Pyramid: Reasoning vs Measurement | dev.to | 2026-05-19

    Is this reasoning, or measurement? If measurement, push it to a deterministic tool. Sonar, Spotless, Ruff, ESLint, coverage gates, pre-commit hooks, complexity calculators. Write a script if no tool exists. That's how just lint got built, and that's the Unix-philosophy move for agentic coding. Hooks fire on tool calls; CI fires on PRs; pre-commit fires on commit. Pick the cheapest layer that catches the failure and run it there.

  9. fory

    A blazingly fast multi-language serialization framework for idiomatic domain objects, schema IDL, and cross-language data exchange.

    Project mention: Apache Fory JSON: Fastest Java JSON Serialization, 10x Faster Than Jackson/Gson | news.ycombinator.com | 2026-08-12
  10. open-location-code

    Open Location Code is a library to generate short codes, called "plus codes", that can be used as digital addresses where street addresses don't exist.

  11. KeyBox

    Bastillion gives you a clean, browser-based way to manage SSH access across all your systems—like a bastion host with a friendly dashboard.

  12. teavm

    Compiles Java bytecode to JavaScript, WebAssembly and C

    Project mention: My determinism test passed for months while the two builds played different games | dev.to | 2026-08-01

    The rules live in one module with no Android on its classpath, which is what let me compile them a second time with TeaVM and run the same logic on a canvas in a browser tab.

  13. Thymeleaf

    Thymeleaf is a modern server-side Java template engine for both web and standalone environments.

    Project mention: AI Agent for Moltbook in Java: From Zero to Hero | dev.to | 2026-02-12
  14. metasfresh

    We do Open Source ERP - Fast, Flexible & Free Software to scale your Business.

  15. ambari

    Apache Ambari simplifies provisioning, managing, and monitoring of Apache Hadoop clusters.

    Project mention: Top Open-Source Data Engineering Tools- Unravelling the Best in 2026 | dev.to | 2025-12-10

    Ambari

  16. AsciidocFX

    Asciidoc Editor and Toolchain written with JavaFX 21 (Build PDF, Epub, Mobi and HTML books, documents and slides)

    Project mention: Asciidoc Book Editor based on JavaFX 19 | news.ycombinator.com | 2026-01-01
  17. guacamole-client

    The Apache Guacamole web application, official extensions, and JavaScript library.

  18. jsweet

    A Java to JavaScript transpiler.

  19. Galen

    Layout and functional testing framework for websites

  20. j2cl

    Java to Closure JavaScript transpiler

    Project mention: WASM 3.0 Completed | news.ycombinator.com | 2025-09-17

    Well, for Java it's actually a separate compiler that targets Wasm and integrates with WasmGC: https://github.com/google/j2cl The Google Sheets team used it for their calc engine: https://v8.dev/blog/wasm-gc-porting

    For Kotlin it's similar but the compiler backend is from Jetbrains themselves, targets Wasm and adapts the Kotlin runtime to use WasmGC: https://kotlinlang.org/docs/wasm-overview.html. https://seb.deleuze.fr/introducing-kotlin-wasm/ has some low level detail on how Kotlin works with WasmGC.

    A bit more on Kotlin/Wasm here, seems like also Dart/Flutter uses WasmGC: https://developer.chrome.com/blog/wasmgc#kotlin_wasm

    https://github.com/dotnet/runtime/issues/94420 has some notes on why C# can't use WasmGC (yet?).

  21. PretendYoureXyzzy

    A web clone of the card game Cards Against Humanity.

  22. cordova-plugin-inappbrowser

    Apache Cordova InAppBrowser Plugin

  23. ofbiz-framework

    Apache OFBiz is an open source product for the automation of enterprise processes. It includes framework components and business applications for ERP, CRM, E-Business/E-Commerce, Supply Chain Management and Manufacturing Resource Planning. OFBiz provides a foundation and starting point for reliable, secure and scalable enterprise solutions.

  24. tray

    Browser plugin for sending documents and raw commands to a printer or attached device. (by qzind)

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Java JavaScript discussion

Log in or Post with

Java JavaScript related posts

  • My determinism test passed for months while the two builds played different games

    1 project | dev.to | 1 Aug 2026
  • JEP 401: Value Objects (Preview) merged to OpenJDK master

    7 projects | news.ycombinator.com | 30 Jul 2026
  • 301 duplicate IDs in the browser, 0 on the JVM: one real bug, end to end

    3 projects | dev.to | 21 Jul 2026
  • Designing for Scale: Repository Structures that Boost Software Development Productivity

    3 projects | dev.to | 20 May 2026
  • The Judgement Pyramid: Reasoning vs Measurement

    4 projects | dev.to | 19 May 2026
  • JPEG Compression

    2 projects | news.ycombinator.com | 18 Mar 2026
  • TeaVM

    1 project | news.ycombinator.com | 8 Mar 2026
  • A note from our sponsor - SaaSHub
    www.saashub.com | 18 Aug 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Index

What are some of the best open-source JavaScript projects in Java? This list will help you:

# Project Stars
1 Selenium WebDriver 34,382
2 conductor 32,084
3 ANTLR 18,978
4 aws-doc-sdk-examples 10,448
5 QR-Code-generator 6,669
6 Zeppelin 6,651
7 spotless 5,610
8 fory 4,493
9 open-location-code 4,343
10 KeyBox 3,542
11 teavm 3,087
12 Thymeleaf 2,977
13 metasfresh 2,399
14 ambari 2,310
15 AsciidocFX 2,047
16 guacamole-client 1,705
17 jsweet 1,491
18 Galen 1,415
19 j2cl 1,374
20 PretendYoureXyzzy 1,278
21 cordova-plugin-inappbrowser 1,139
22 ofbiz-framework 1,106
23 tray 1,047

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that Java is
the 10th most popular programming language
based on number of references?