Skip to content

wwwjames/java-repl

 
 

Repository files navigation

Java REPL

Java REPL is a simple Read-Eval-Print-Loop for Java language.

  • Support for most of Java language constructs
  • Access from console as well as web terminal via browser
  • Create imports, methods, classes, enums and interfaces
  • Load classes from any jar file or directory (including web urls)
  • Load and evaluate expression from file
  • List previous results, imports, created types and methods
  • Show history of evaluations
  • Search and evaluate expression from history
  • Clear and replay previous evaluations
  • Load and evaluate any Java source file
  • Basic code completion for results, classes and methods
  • Coloured output for console and web terminal

Web version is available at www.javarepl.com.

Build

Build Status

Building Java REPL requires the ant build tool.

After cloning the git repository, navigate over to it and run:

$ ant

After this completes, the jar completed with bundled dependencies will be located at build/artifacts/javarepl-dev.build.jar

Downloads

Latest version

Latest IntelliJ IDEA plugin

Previous releases

Usage

To run Java REPL you need to install Java Development Kit (JDK) 6 or newer. Download it from here and follow install instructions. Once JDK is installed and configured you can run:

$ java -jar javarepl.jar

If this doesn't work try to run pointing directly to java executable within JDK, like so

$ <PATH_TO_JDK>/bin/java -jar javarepl.jar

License

Distributed under the Apache License, Version 2.0

About

Read Eval Print Loop for Java

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 79.7%
  • JavaScript 17.5%
  • CSS 1.6%
  • HTML 1.1%
  • Shell 0.1%