Rhino is an open-source implementation of JavaScript written entirely in Java
Перейти к файлу
Greg Brail 085d561953 README update 2024-05-03 21:00:32 -07:00
.github Update github publish 2024-05-03 20:48:21 -07:00
benchmarks/org/mozilla/javascript/benchmarks add @Override and some try-with-resources (#1449) 2024-03-04 08:03:48 +01:00
docs Update files for 1.7.15 release 2024-05-03 17:41:43 -07:00
examples add @Override and some try-with-resources (#1449) 2024-03-04 08:03:48 +01:00
gradle/wrapper Upgrade Gradle wrapper to version 7.2. 2021-10-08 16:57:47 -07:00
man Provide console API in shell. 2022-04-01 14:29:10 -07:00
src Fix unhandled promise rejection handler after a `.then` 2024-05-03 16:04:47 -07:00
test262@f94fc660cc update test262 +test262.properties file (re)generator (#930) 2021-06-23 14:47:57 -07:00
testsrc Fix unhandled promise rejection handler after a `.then` 2024-05-03 16:04:47 -07:00
tools/ci/linux Fix release script. 2019-05-17 11:23:57 -07:00
toolsrc/org/mozilla/javascript/tools add @Override and some try-with-resources (#1449) 2024-03-04 08:03:48 +01:00
xmlimplsrc/org/mozilla/javascript/xmlimpl add @Override and some try-with-resources (#1449) 2024-03-04 08:03:48 +01:00
.gitattributes Improve the build process to include reproducible JARs 2021-12-22 16:21:23 -08:00
.gitignore GitHub Actions is working well -- get rid of CircleCI 2023-06-08 15:52:59 -07:00
.gitmodules Lightweight test262 runner 2015-06-19 00:23:35 +03:00
CODE_OF_CONDUCT.md Add Mozilla Code of Conduct file 2019-04-10 16:16:46 -07:00
LICENSE.txt Update LICENSE.txt to MPL 2.0 2012-06-06 15:23:31 +02:00
NOTICE-tools.txt Add a NOTICE-tools to cover third-party code in the "toolsrc" directory 2022-01-05 16:22:13 -08:00
NOTICE.txt Add a NOTICE with the V8 copyright message. 2015-02-23 10:30:00 -08:00
PGP_KEYS.txt Add PGP_KEYS.txt (#1263) 2022-09-24 19:43:49 -07:00
README.md README update 2024-05-03 21:00:32 -07:00
RELEASE-NOTES.md Update files for 1.7.15 release 2024-05-03 17:41:43 -07:00
RELEASE-STEPS.md README update 2024-05-03 21:00:32 -07:00
SECURITY.md Create Security Policy 2023-06-08 16:26:22 -07:00
build.gradle Update SunSpider benchmarks (#1375) 2023-08-18 16:07:59 -07:00
checkstyle.xml avoid star imports across the codebase 2018-10-11 08:56:37 +00:00
gradle.properties Get ready for new snapshot 2024-05-03 21:00:32 -07:00
gradlew Upgrade Gradle wrapper to version 7.2. 2021-10-08 16:57:47 -07:00
gradlew.bat Upgrade gradle to 7.0.1 2021-05-14 11:14:46 -07:00
spotbugs-exclude.xml Exclude 'testsrc' and 'examples' from spotbugs on Windows systems (#1086) 2021-11-18 13:59:53 -08:00

README.md

Rhino: JavaScript in Java

Rhino (234581759)

Rhino is an implementation of JavaScript in Java.

License

Rhino is licensed under the MPL 2.0.

Releases

The current release is Rhino 1.7.15. Please see the Release Notes.

Releases
Rhino 1.7.15May 3, 2024
Rhino 1.7.14January 6, 2022
Rhino 1.7.13September 2, 2020
Rhino 1.7.12January 13, 2020
Rhino 1.7.11May 30, 2019
Rhino 1.7.10April 9, 2018
Rhino 1.7.9March 15, 2018
Rhino 1.7.8January 22, 2018
Rhino 1.7.7.2August 24, 2017
Rhino 1.7.7.1February 2, 2016
Rhino 1.7.7June 17, 2015
Rhino 1.7.6April 15, 2015
Rhino 1.7R5January 29, 2015

Compatibility table which shows which advanced JavaScript features from ES6, and ES2016+ are implemented in Rhino.

GitHub Action Status

Documentation

Information for script builders and embedders:

Archived

JavaDoc for all the APIs:

https://javadoc.io/doc/org.mozilla/rhino

Building

How to Build

Rhino builds with Gradle. Here are some useful tasks:

./gradlew jar

Build and create Rhino jar in the buildGradle/libs directory.

git submodule init
git submodule update
./gradlew test

Build and run all the tests, including the official ECMAScript Test Suite. See Running tests for more detailed info about running tests.

./gradlew testBenchmark

Build and run benchmark tests.

Releasing and publishing new version

  1. Ensure all tests are passing
  2. Remove -SNAPSHOT from version in gradle.properties in project root folder
  3. Create file gradle.properties in $HOME/.gradle folder with following properties. Populate them with maven repo credentials and repo location.
mavenUser=
mavenPassword=
mavenSnapshotRepo=
mavenReleaseRepo=
  1. Run Gradle task to publish artifacts to Maven Central.
./gradlew publish
  1. Increase version and add -SNAPSHOT to it in gradle.properties in project root folder.
  2. Push gradle.properties to GitHub

Running

Rhino can run as a stand-alone interpreter from the command line:

java -jar buildGradle/libs/rhino-1.7.12.jar -debug -version 200
Rhino 1.7.9 2018 03 15
js> print('Hello, World!');
Hello, World!
js>

There is also a "rhino" package for many Linux distributions as well as Homebrew for the Mac.

You can also embed it, as most people do. See below for more docs.

Java 16 and later

If you are using a modular JDK that disallows the reflective access to non-public fields (16 and later), you may need to configure the JVM with the --add-opens option to authorize the packages that your scripts shall use, for example:

--add-opens java.desktop/javax.swing.table=ALL-UNNAMED

Issues

Most issues are managed on GitHub:

https://github.com/mozilla/rhino/issues

Contributing PRs

To submit a new PR, please use the following process:

  • Ensure that your entire build passes "./gradlew check". This will include code formatting and style checks and runs the tests.
  • Please write tests for what you fixed, unless you can show us that existing tests cover the changes. Use existing tests, such as those in "testsrc/org/mozilla/javascript/tests", as a guide.
  • If you fixed ECMAScript spec compatibility, take a look at test262.properties and see if you can un-disable some tests.
  • Push your change to GitHub and open a pull request.
  • Please be patient as Rhino is only maintained by volunteers and we may need some time to get back to you.
  • Thank you for contributing!

Code Formatting

Code formatting was introduced in 2021. The "spotless" plugin will fail your build if you have changed any files that have not yet been reformatted. Please use "spotlessApply" to reformat the necessary files.

If you are the first person to touch a big file that spotless wants to make hundreds of lines of changes to, please try to put the reformatting changes alone into a single Git commit so that we can separate reformatting changes from more substantive changes.

Warning: If you build with Java 16 or later, you need to apply a workaround for a "spotless" issue. Otherwise, the task will be disabled and your PR may fail.

The following must be added to your gradle.properties.

org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
 --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
 --add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
 --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
 --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED

For more details, see https://github.com/diffplug/spotless/issues/834#issuecomment-819118761

More Help

The Google group is the best place to go with questions:

https://groups.google.com/forum/#!forum/mozilla-rhino