java-bridge
    Preparing search index...

    Namespace classpath

    Methods for altering and querying the class path.

    import { classpath } from 'java-bridge';

    // Append a jar to the class path
    classpath.append('/path/to/jar.jar');

    assert.equal(classpath.get().length, 1);
    assert.equal(classpath.get()[0], '/path/to/jar.jar');

    Functions

    append
    get