All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.linguarobot.aws.cdk.maven.node.NodeInstaller Maven / Gradle / Ivy

package io.linguarobot.aws.cdk.maven.node;

/**
 * A Node.js installer which downloads and installs, if needed, Node.js to the local maven repository.
 */
public interface NodeInstaller {

    String BASE_DOWNLOAD_URL = "https://nodejs.org";

    /**
     * Installs, if needed, the given version of Node.js for the current platform to the local maven repository.
     *
     * @param version Node.js version to install
     * @throws NodeInstallationException in case the installation fails
     * @return a {@code NodeClient} for the installed Node.js
     */
    NodeClient install(NodeVersion version);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy