All Projects → YaroslavGaponov → Node Jvm

YaroslavGaponov / Node Jvm

java virtual machine in pure node.js

Programming Languages

javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Node Jvm

Kotlinx Benchmark
Kotlin multiplatform benchmarking toolkit
Stars: ✭ 137 (-93.33%)
Mutual labels:  jvm
Nudge4j
Get inside your JVM
Stars: ✭ 144 (-92.99%)
Mutual labels:  jvm
Webtau
Webtau (short for web test automation) is a testing API, command line tool and a framework to write unit, integration and end-to-end tests. Test across REST-API, Graph QL, Browser, Database, CLI and Business Logic with consistent set of matchers and concepts. REPL mode speeds-up tests development. Rich reporting cuts down investigation time.
Stars: ✭ 156 (-92.4%)
Mutual labels:  jvm
Tyrian
Full-featured TypeScript on JVM
Stars: ✭ 138 (-93.28%)
Mutual labels:  jvm
Xmlutil
XML Serialization library for Kotlin
Stars: ✭ 143 (-93.03%)
Mutual labels:  jvm
Fxgl
Stars: ✭ 2,378 (+15.83%)
Mutual labels:  jvm
Kotlin Faker
Generate realistically looking fake data such as names, addresses, banking details, and many more, that can be used for testing and data anonymization purposes.
Stars: ✭ 136 (-93.38%)
Mutual labels:  jvm
Play Java Starter Example
Play starter project in Java (ideal for new users!)
Stars: ✭ 164 (-92.01%)
Mutual labels:  jvm
Nd4j
Fast, Scientific and Numerical Computing for the JVM (NDArrays)
Stars: ✭ 1,742 (-15.15%)
Mutual labels:  jvm
Vert.x
Vert.x is a tool-kit for building reactive applications on the JVM
Stars: ✭ 12,544 (+511.01%)
Mutual labels:  jvm
Ore Infinium
Ore Infinium, Open Source multiplayer Terraria-inspired Sci-fi game, focused on technology, devices and researching. Written in Kotlin (JVM), LibGDX. Cross platform
Stars: ✭ 139 (-93.23%)
Mutual labels:  jvm
Tokens
Java library for conveniently verifying and storing OAuth 2.0 service access tokens
Stars: ✭ 142 (-93.08%)
Mutual labels:  jvm
Dumpclass
Dump classes from running JVM process.
Stars: ✭ 156 (-92.4%)
Mutual labels:  jvm
Kivm
🌟This is a pure C++ implementation of Java Virtual Machine (only Java 8 is supported). Inspired by Hotspot In Action.
Stars: ✭ 137 (-93.33%)
Mutual labels:  jvm
Clj Docker Client
An idiomatic, data-driven, REPL friendly Clojure Docker client
Stars: ✭ 162 (-92.11%)
Mutual labels:  jvm
Inspectit Ocelot
inspectIT Ocelot - Java agent for collecting application performance, tracing and behavior data
Stars: ✭ 135 (-93.42%)
Mutual labels:  jvm
Play Scala Isolated Slick Example
Example Play Slick Project
Stars: ✭ 155 (-92.45%)
Mutual labels:  jvm
Bouncy Gpg
Make using Bouncy Castle with OpenPGP fun again!
Stars: ✭ 164 (-92.01%)
Mutual labels:  jvm
Appbundle Maven Plugin
Maven plugin that creates an Application Bundle for OS X containing all your project dependencies and the necessary metadata
Stars: ✭ 163 (-92.06%)
Mutual labels:  jvm
Playframework
Play Framework
Stars: ✭ 12,041 (+486.51%)
Mutual labels:  jvm

node-jvm Build Status

Overview

node-jvm - jvm in pure node.js

Example

java

public class Main {
    public static long fib(int n) {
        if (n <= 1) return n;
        return fib(n-1) + fib(n-2);
    }
    
    public static void main(String[] args) {
        if (args.length == 0) {
                System.out.print("help: java Main.class {Number}");
                return;
        }
        
        int N = Integer.parseInt(args[0]);
        long start = System.currentTimeMillis();            
        System.out.format("Fibonacci from 1 to %s:\n", N);
        for (int i = 1; i <= N; i++) {
            System.out.println(i + ": " + fib(i));
        }
        long stop = System.currentTimeMillis();
        System.out.println("time: " + (stop - start) + "ms");
        
        System.out.println("done.");
    }
}

node.js

var JVM = require("node-jvm");
var jvm = new JVM();
jvm.setLogLevel(7);
var entryPointClassName = jvm.loadJarFile("./Main.jar");
jvm.setEntryPointClassName(entryPointClassName);
jvm.on("exit", function(code) {
    process.exit(code);
});
jvm.run([15]);

build java files

cd examples/fibonacci; make

run jvm

./fibonacci.js

clean

make clean

output

Fibonacci from 1 to 15:
1: 1
2: 1
3: 2
4: 3
5: 5
6: 8
7: 13
8: 21
9: 34
10: 55
11: 89
12: 144
13: 233
14: 377
15: 610
time: 106ms
done.

other examples

cd examples/

arrays - working with different types of arrays 
dogs - simple object-oriented programming
fibonacci - recursion
jsclass - java and javascript mix
switcher - working with different switches
cast - cast for different types
ex - program exceptions
ex2 - jvm exceptions
idogs - working with interface
static - working with static objects
threads - multithreading

Developer

Yaroslav Gaponov (yaroslav.gaponov -at - gmail.com)

License

The MIT License (MIT)

Copyright (c) 2013 Yaroslav Gaponov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].