1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
This commit is contained in:
Quinton Ashley 2022-04-30 08:18:58 -05:00
parent 2bb0343b0a
commit 1e3948f718
3 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ By default workerPath is undefined unless you are using java2js on a local serve
## Why did you make this?
I created this package so intro level computer science students could write Java code but still use my [QuintOS](https://github.com/quinton-ashley/quintos) retro game engine library, which is web based.
I created this package so intro level computer science students could write Java code but still use my [QuintOS](https://quintos.org) retro game engine library, which is web based.
## Credits

2
ide.js
View File

@ -1,7 +1,7 @@
(async () => {
jdk.log = document.getElementById('javaConsole');
await jdk.init('./jdk');
jdk.workerPath = 'java2js/java2js_worker.js';
jdk.workerPath = 'java2js_worker.js';
async function run() {
jdk.log.value = '';

View File

@ -1,6 +1,6 @@
{
"name": "java2js",
"version": "1.2.15",
"version": "1.2.16",
"description": "Converts Java to JavaScript and runs it with a JS JDK",
"main": "jdk.js",
"scripts": {